03-16-2017 01:02 PM
Hi Everyone,
How can i write an if condition using expressions? I actually want to show some variable values in the documentation of the user task if a boolean is true.
Please advice.
Thank you
03-16-2017 02:28 PM
03-17-2017 05:22 PM
The standard expression language used in Activiti is JUEL (Unified Expression Language - The Java EE 5 Tutorial ).
As far as I know, JUEL supports ternary (conditional) operators.
e.g. ${failed ? 1 : 2}
If process variable failed == true the expressions returns 1, otherwise 2.
Cheers,
Greg
Explore our Alfresco products with the links below. Use labels to filter content by product module.