Is it possible to refer to a specific base search in you dashboard, by use of a token (input dropdown).
For instance, when having two basesearches I want to refer to either one of them by using a token in my postprocess search.
This however doesn't seem to work, see example below,
<form>
<search id="BS_Windows">
<query>SOMEQUERY</query>
</search>
<search id="BS_Linux">
<query>SOMEQUERY2</query>
</search>
<row>
<panel>
<input type="dropdown" token="selectedOS" searchWhenChanged="true">
<label>Service Provider</label>
<choice value="BS_Windows">Windows</choice>
<choice value="BS_Linux">Linux</choice>
</input>
<single>
<title>Windows Compliancy</title>
<search base="$selectedOS$">
<query>VISUALIZATION</query>
</search>
</panel>
</row>
...
... View more