Can you please try this?
<input type="dropdown" token="field1">
<label>field1</label>
<choice value="reports">reports</choice>
<choice value="search">search</choice>
<choice value="dashboards">dashboards</choice>
<change>
<condition match="$value$=="reports"">
<link target="_blank">/app/search/reports</link>
</condition>
<condition match="$value$=="search"">
<link target="_blank">/app/search/search</link>
</condition>
<condition match="$value$=="dashboards"">
<link target="_blank">/app/search/dashboards</link>
</condition>
</change>
</input>
Are you looking for this?
<input type="dropdown" token="field1">
<label>field1</label>
<choice value="reports">reports</choice>
<choice value="search">search</choice>
<choice value="dashboards">dashboards</choice>
<change>
<link target="_blank">/app/search/$value$</link>
</change>
</input>
Thanks
KV
▄︻̷̿┻̿═━一
If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.
This is really helpful, but i have another question
can we put below for a specific value like only at select of dashboard as choice it'll go for the link
<change> <link target="_blank">/app/search/$value$</link> </change>
Can you please try this?
<input type="dropdown" token="field1">
<label>field1</label>
<choice value="reports">reports</choice>
<choice value="search">search</choice>
<choice value="dashboards">dashboards</choice>
<change>
<condition match="$value$=="reports"">
<link target="_blank">/app/search/reports</link>
</condition>
<condition match="$value$=="search"">
<link target="_blank">/app/search/search</link>
</condition>
<condition match="$value$=="dashboards"">
<link target="_blank">/app/search/dashboards</link>
</condition>
</change>
</input>