I have problem with passing property values between tasks. For example, i have in start task model defined property:
<type name="mcwm:submitStart">
<parent>bpm:startTask</parent>
<properties>
<property name="mcwm:projectName">
<title>Naziv projekta</title>
<type>d:text</type>
<mandatory>true</mandatory>
</property>
in share-config-custom.xml i show that property on start page and that's ok.
...
<show id="mcwm:projectName"/>
...
<field id="mcwm:projectName" set="general" />
...
Now on my second form i want to show the same field with value that is entered on start form. In model i didn't specify again this property for second task, i just wrote:
...
<type name="mcwm:preparationOfProjectCharter">
<parent>bpm:workflowTask</parent>
</type>
...
and in share-config-custom.xml copied first form configuration for second form with one little change in force="true" attribute:
...
<show id="mcwm:projectName" force="true"/>
...
<field id="mcwm:projectName" set="general" />
...
Now field is there on my second form but value that is entered on my first form isn't, do i have to do something else to succeed that and pass property values between forms?
Regards, Aleksadnar