If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Hi thanks for quick replay,
Actually i need to use checklist type field in Flowcharts - > Conditional Start Event -> add condition selectbox (see screenshot) not via code as you suggested.
Don't touch "add condition". You should use the "formula"
Ok i see, i did as you suggested just I'm new to formulas
and i don't understand how to return from formula some positive result so that
"Conditional Start Event" will start
---
doAction = 0;
// here i want to check if tags( it is checklist type field) is empty
ifThen(tags=="", doAction=1)
// here i want to check if tags contain some test option
ifThen(array\includes(tags, 'test'), doAction=1)
//how to retrun doAction ?? so that "Conditional Start Event" will be triggered ?
--
Comment