Hello - I would like to change the default value of "Select..." to "Filter..." how might I go about this?
I do not want it to be an option as I am using:
<input type="dropdown" token="user" searchWhenChanged="false">
<change>
<condition match="len($value$) > 0">
<set token="user">user="$value$"</set>
</condition>
<condition>
<set token="user"></set>
</condition>
</change>
<label>Identity</label>
<allowCustomValues>true</allowCustomValues>
<fieldForLabel>test</fieldForLabel>
<fieldForValue>test</fieldForValue>
<search>
<query>|makeresults
|eval test=""</query>
</search>
</input>
Thanks in advance.
Hi @jason_hotchkiss ,
As you are populating the drop-down using dynamic values via query, you cannot set the default value for the dropdown.
I tried to give the static value as Filter and set it as a default value in the dropdown. It works as you want but I am not sure how it reacts when it populates the value from the query and the token you use in the subsequent queries.