Hi Team,
how to add check boxes in agent desktop i want four check boxes with names for that check boxes in agent desktop page if anyone known how to do that please give me some solution.i am attaching a screenshot for reference.
Thanks&Regards,
praveenkumar.N
Like
Dear Praveen,
Please see an example of the code below:
define("OperatorSingleWindowPage", [],
function(){
return {
attributes : {
"IsActive": {
dataValueType: this.Terrasoft.DataValueType.BOOLEAN,
type: this.Terrasoft.ViewModelColumnType.VIRTUAL_COLUMN,
value: false
},
},
diff : [
// First checkbox
{
"operation": "insert",
"parentName": "leftContainer",
"propertyName": "items",
"name": "IsActive",
"values": {
"layout": {
"column": 0,
"row": 0,
"colSpan": 12
},
"bindTo": "IsActive",
"enabled": true,
"caption" : "Is Active"
}
}
]
};
});
Additionally, please find more information in the articles by the links below:
https://academy.creatio.com/documents/technic-sdk/7-15/how-add-button-section
https://community.creatio.com/questions/please-tell-me-how-add-checkbox-radio-buttons-section-wizard
If you have any further question, please contact technical support.
Best regards,
Norton