Hi,
I am trying to change/control many multi-select dropdowns by one Master_multi-select dropdown value/checks.
So I am trying to use more than one value in the set-token tag. But it is not working, if I give 2 values in the Set-token tag. then it will get merge but if I give a single value then it is working fine.
I tried multiple ways like double quotes, single quotes., etc but I could not find the solution
Please find the below example and help me to find a solution.
<set token="form.Filter1"> "new", "rejected" </set>
out put will be like below.
But the expectation is like below
Example in multiselect:-
<input type="dropdown" token="MasterFilter_Token">
<label>MasterFilter</label>
...,
<change>
<condition>
<set token="form.Filter1"> "new", "rejected", "closed" </set>
...,
</condition>
</change>
...,
Thanks in Advance!!!
Try this on change of first dropdown.
<eval token="form.Filter1">split("new,rejected",",")</eval>
In case the values are from the same dropdown then try this.
<eval token="form.Filter1">'form.Filter1'</eval>
Thanks
KV
▄︻̷̿┻̿═━一 😉
If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.