Hi,
I tried to hide the type and topic fields for a external service task via the modeler templates without success.
I did also not find anything in the description.
What would be the correct syntax for that? My current template is:
{
"name" : "My external task",
"id" : "external.mytask",
"appliesTo": [
"bpmn:ServiceTask"
],
"properties" : [
{
"label": "external",
"type": "Hidden",
"value": "external",
"binding": {
"type": "property",
"name": "camunda:type"
}
},
{
"label": "topic",
"type": "Hidden",
"value": "TOPIC_NAME",
"binding": {
"type": "property",
"name": "camunda:topic"
}
},
...
],
"entriesVisible": {
"_all": true,
"type": false,
"topic": false
}
}
I also tried camunda:type and camunda:topic, but that also did not the trick.
Thanks for help,
Alexander