Hi all,
I like to check in a flow if a not mandatory input is provided and dependedon the result I like to continue on different states.
I have tried to use a <decision-state> but the null check does not work. I have also tried to put ${} around the evaluation and different commands (empty, == null, is null)
Any ideas?Code:<input name="businessClassAttribute" value="flowScope.businessClassAttribute" required="false"/> <decision-state id="singleOrMultiView.decision"> <if test="businessClassAttribute == null" then="viewBusinessClassAttributes.action" else="viewBusinessClassAttribute.view" /> </decision-state>
- Peter


Reply With Quote

