Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
devel:documentation:workflows:dev:workflow [2018/11/14 13:16]
kucerar json example
devel:documentation:workflows:dev:workflow [2021/05/15 15:27]
husniko [Dynamic detail of task]
Line 393: Line 393:
     </userTask>     </userTask>
 </code> </code>
 +  
 +  
 +===Setting solver note message - decision reason===
 +The task solver is able to set the reason of the decision or any other note to the solved task. The text are serving to this purpose is part of the confirmation modal window which appears, when users clicks the decision button. Display of this modal window has to be enabled by ''decision'' property ''showWarning'' or ''reasonRequired''. When ''reasonRequired'' is used the solver note/decsion reason is **mandatory**. 
 =====Custom task detail===== =====Custom task detail=====
  
Line 494: Line 498:
  
 Sending notification can be turnd off in each UserTask by setting Form property **sendNotification**. Example of this setting: Sending notification can be turnd off in each UserTask by setting Form property **sendNotification**. Example of this setting:
-{{ :navrh:wf001.png |}}+<code xml> 
 +<activiti:formProperty 
 +    id="sendNotification" 
 +    type="configuration" 
 +    expression="false" 
 +    writable="false"> 
 +</activiti:formProperty> 
 +</code> 
 Type of variable have to be **configuration**. It is FormType, which is not propagated to frontend. ID or name have to be **sendNotification**. It does not matter even in case of **idm.sec.core.wf.notification.send** is setted to false, because form property **sendNotification** has **higher priority**. Type of variable have to be **configuration**. It is FormType, which is not propagated to frontend. ID or name have to be **sendNotification**. It does not matter even in case of **idm.sec.core.wf.notification.send** is setted to false, because form property **sendNotification** has **higher priority**.
  
  • by husniko