03-06-2013 04:13 AM
03-07-2013 08:58 AM
<activiti:formProperty id="variable" expression="#{object.variable}" type="long" />
03-07-2013 11:28 PM
03-08-2013 05:29 AM
<activiti:formProperty id="variable" expression="#{object.variable}" type="long" />
The line above will: show a form-proprty of type long. When submitted in, the value filled in will be done using the expression. This will look for a process-variable named "object" and set the "variable" property, effectively calling object.setVariable(longValueFilledIn). This can ONLY WORK if there is already a variable named "object" in the process. If not, you'll get an exception.
<script><![CDATA[execution.setVariable("object", execution.getVariable("object"));]]></script>
The script-task will do nothing useful. If will read the "object" variable and write it again immediately without changing the value.03-10-2013 04:41 AM
03-12-2013 05:34 AM
03-13-2013 02:35 AM
03-14-2013 07:13 AM
03-15-2013 06:26 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.