define("NotificationsSettingsSchema", ["DesktopPopupNotification"],
function(DesktopPopupNotification) {
return {
entitySchemaName: "NotificationsSettings",
attributes: {
"PopupsStateFlag2": {
name: "PopupsStateFlag2",
dataValueType: this.Terrasoft.DataValueType.BOOLEAN,
type: this.Terrasoft.ViewModelColumnType.VIRTUAL_COLUMN
}
},
methods: {},
diff: [
{
"operation": "insert",
"name": "PopupsStateCheckBoxContainer2",
"parentName": "NotificationsSettingsContainer",
"propertyName": "items",
"values": {
"itemType": this.Terrasoft.ViewItemType.CONTAINER,
"wrapClass": ["check-box-container", "stateflag-container"],
"items": []
}
}, {
"operation": "insert",
"parentName": "PopupsStateCheckBoxContainer",
"propertyName": "items",
"name": "PopupsStateCheckBox2",
"classes": ["t-checkboxedit"],
"wrapClass": ["t-checkboxedit"],
"values": {
"bindTo": "PopupsStateFlag2",
"labelConfig": {
"caption": {"bindTo": "Resources.Strings.PopupsState2"}
}
}
}
]
};
});