Im my Angular application, I need set options of multicheckbox field from a function inside my app (component or service).
I don′t know how works templateOptions.options
, how should I write the value ?
This is my json code :
{
"key": "clientIds",
"type": "multicheckbox",
"className": "flex-1",
"templateOptions": {
"label": "Clients",
"required": true
},
"expressionProperties": {
"templateOptions.options": "??????" // <-- here to bind with a component or shared service method
}
}