Those are from my Integration Toolkit. They default to false, so should show as false checkboxes.
This is how the toolkit declares those props:
static {
RepublishEnabled = new BasicDescriptiveProperty<>(
"republishEnabled",
"simaids.tags.republishEnabled.name",
"simaids.tags.category",
"simaids.tags.republishEnabled.desc",
Boolean.class,
Boolean.FALSE);
RepublishToServer = new BasicDescriptiveProperty<>(
"republishToServer",
"simaids.tags.republishToServer.name",
"simaids.tags.category",
"simaids.tags.republishToServer.desc",
String.class,
null);
RepublishToItem = new BasicDescriptiveProperty<>(
"republishToItem",
"simaids.tags.republishToItem.name",
"simaids.tags.category",
"simaids.tags.republishToItem.desc",
String.class,
null);
BulkScriptEnabled = new BasicDescriptiveProperty<>(
"bulkScriptEnabled",
"simaids.tags.bulkScriptEnabled.name",
"simaids.tags.category",
"simaids.tags.bulkScriptEnabled.desc",
Boolean.class,
Boolean.FALSE);
BulkScriptFunction = new BasicDescriptiveProperty<>(
"bulkScriptToServer",
"simaids.tags.bulkScriptFunction.name",
"simaids.tags.category",
"simaids.tags.bulkScriptFunction.desc",
String.class,
null);
DivertEngWriteEnabled = new BasicDescriptiveProperty<>(
"divertEngWriteEnabled",
"simaids.tags.divertEngWriteEnabled.name",
"simaids.tags.category",
"simaids.tags.divertEngWriteEnabled.desc",
Boolean.class,
Boolean.FALSE);
DivertEngWriteToServer = new BasicDescriptiveProperty<>(
"divertEngWriteToServer",
"simaids.tags.divertEngWriteToServer.name",
"simaids.tags.category",
"simaids.tags.divertEngWriteToServer.desc",
String.class,
null);
DivertEngWriteToItem = new BasicDescriptiveProperty<>(
"divertEngWriteToItem",
"simaids.tags.divertEngWriteToItem.name",
"simaids.tags.category",
"simaids.tags.divertEngWriteToItem.desc",
String.class,
null);
DivertRawWriteEnabled = new BasicDescriptiveProperty<>(
"divertRawWriteEnabled",
"simaids.tags.divertRawWriteEnabled.name",
"simaids.tags.category",
"simaids.tags.divertRawWriteEnabled.desc",
Boolean.class,
Boolean.FALSE);
DivertRawWriteToServer = new BasicDescriptiveProperty<>(
"divertRawWriteToServer",
"simaids.tags.divertRawWriteToServer.name",
"simaids.tags.category",
"simaids.tags.divertRawWriteToServer.desc",
String.class,
null);
DivertRawWriteToItem = new BasicDescriptiveProperty<>(
"divertRawWriteToItem",
"simaids.tags.divertRawWriteToItem.name",
"simaids.tags.category",
"simaids.tags.divertRawWriteToItem.desc",
String.class,
null);
}
Has something changed in the the tag prop model in 8.3.8?
{ I'm seeing the same in 8.3.8 on all tags that do not explicitly set these props. }