Normally when you want to add an new element to the XML definition in code you have to create the appropriate modeller element, assign its properties and so on. But is there a way to get and set the element’s raw XML content?
For example:
//custom elements here
When loaded in modeler we get an object like this:
{ "$type": "bpmn:UserTask", "renderings": [ { "extensionElements": { "values": [ //is is possible to get and set the raw XML content that goes here ] } }, ... ], ... }
Is this possible? Thanks!