@ITWhisperer @catdadof3 yes want to set $entityTokenFirst$ to * when the user selects "ALL" in the dropdown, observing that search queries are being executed automatically (auto-run) whenever you switch dropdown values or filters, without explicitly hitting the submit button. looking for an alternative way to achieve this behavior without triggering auto-run searches. HOw to apply multiple condition only when they hit a submit <change>
<condition value="ALL">
<set token="entityTokenFirst">*</set>
</condition>
<condition>
<!-- Split the value and set tokens for both parts -->
<set token="entityLabel">$label$</set>
<eval token="searchName">mvindex(split($value$, ","),1)</eval>
<eval token="entityTokenFirst">mvindex(split($value$, ","),0)</eval>
</condition>
</change> below dashboard is working only when i hit submit button,no condition is being used below <form>
<label>stats Clone metrics</label>
<fieldset submitButton="true">
<input type="dropdown" token="indexToken1" searchWhenChanged="false">
<label>Environment</label>
<choice value="prod,prod">PROD</choice>
<choice value="np,test">TEST</choice>
<change>
<eval token="stageToken">mvindex(split($value$,","),1)</eval>
<eval token="indexToken">mvindex(split($value$,","),0)</eval>
</change>
<default>np,test</default>
</input>
<input type="dropdown" token="entityToken" searchWhenChanged="false">
<label>Data Entity</label>
<choice value="target">Target </choice>
<choice value="product">Product</choice>
<choice value="*">ALL</choice>
</input>
<input type="time" token="timeToken" searchWhenChanged="false">
<label>Time</label>
<default>
<earliest>-24h@h</earliest>
<latest>now</latest>
</default>
</input>
</fieldset>
</form>
... View more