Not the most recent Topic, but it got shown first, so i'll post my approach here. Recently i had similar difficulties and ended up with a solution with way less lines and without much <set> ans <unset> Dropdown: <input type="dropdown" token="dropdownTok" searchWhenChanged="true">
<label>dropdown</label>
<choice value="all">All</choice>
<choice value="1">Entry1</choice>
<choice value="2">Entry2</choice>
<choice value="3">Entry3</choice>
<choice value="4">Entry4</choice>
<change>
<eval token="DisplayPanel1">if($value$="1",true(),if($value$="all",true(),null()))</eval>
<eval token="DisplayPanel2">if($value$="2",true(),if($value$="all",true(),null()))</eval>
<eval token="DisplayPanel3">if($value$="3",true(),if($value$="all",true(),null()))</eval>
<eval token="DisplayPanel4">if($value$="4",true(),if($value$="all",true(),null()))</eval>
</change>
<default>all</default>
</input> That couple of lines inside <change> allows to set/unset the Tokens without <condition> I simply can u8se depends="$DisplayPanel2$" and that Row/Panel only shows up when all or Entry2 is selected
... View more