I would like the control when the field type of 'select list (cascading)' triggers?
If you select the first item and click off form, it triggers and retains the value selected in the first item.
I imagine the only solution might be in the automation rule.
I would need to check if the child is Empty and just exit the rule.
But then you lose the initial values too.
Is there anything with the field type that can control when it triggers?
Hi @Paul Konen
Before proceeding, would you please explain the problem you are trying to solve? That is, "why do this?" Knowing that may help identify other solution approaches.
Until we know that...
If I understand you question, I believe the answer is "no".
When you need the previous values (e.g., from setting the parent, exiting the field, and later setting the child), you have a couple of workaround options:
Kind regards,
Bill
I'm calling a backend system with changes from that control.
But as soon as you click from child to parent, or off control somewhere on the form it triggers and sends off the current values.
I would like for it to only fire if both values are complete.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for that information. If one leaves the field it triggers as an update event.
When your rule only needs both current values to proceed, try using a smart value condition to check both are non-empty:
{{issue.customfield_12345.value}}
{{issue.customfield_12345.child.value}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.