Is there a way, when defining groups in a custom connector template, to specify the display order they appear in the properties panel?
Hi, @Justin_Phillips ,
As per my knowledge, following the schema, whatever the order of the group you are giving in the groups array, the modeler renders in the same order.
"groups": [
{
"id": "operation",
"label": "Operation"
},
{
"id": "inputs",
"label": "Input Mapping"
},
{
"id": "output",
"label": "Output Mapping"
},
{
"id": "errors",
"label": "Error Handling"
}
]
has rendered me
in the Camunda Desktop Modeler.
Hope this helps.
@Hariharan_B thanks for the reply. I should have said that I am using the Web Modeller (SaaS), and have tried that but the groups come out in a different order.
I found the issue. Not only do the group definitions need to be in the right order, but the properties that are part of the group also have to be ordered in the right order, for them to be displayed in the right order!
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.