cancel
Showing results for 
Search instead for 
Did you mean: 

deleting source when save the process

franklin
Champ in-the-making
Champ in-the-making
Hi all

I'm facing a strange behavior with modeler ( version 5.6 ).

I put this code inside my task.

<userTask id="task">
  <extensionElements>
   <activiti:formProperty id="room" />
    <activiti:formProperty id="duration" type="long"/>
    <activiti:formProperty id="speaker" variable="SpeakerName" writable="false" />
    <activiti:formProperty id="street" expression="#{address.street}" required="true" />

  </extensionElements>
</userTask>

After this, I open my process in modeler and I just click the save button.
Then, the modeler erase the code inside my task.

Is this the normal modeler behavior?

Regards,

Franklin
2 REPLIES 2

ronald_van_kuij
Champ on-the-rise
Champ on-the-rise
Correct, the modeler is not aware of the activiti namespace and does not leave things in place. Officially it is a bug since using other elements with other namespaces within an extension is allowed according to the spec. There is already a related issue filed: http://code.google.com/p/signavio-core-components/issues/detail?id=14 Please comment there or file a new issue (also there!)

franklin
Champ in-the-making
Champ in-the-making
All right ronald.van.kuijk !

Thank you.