@cedriclac ,
You dont need to replace token. You can directly set it at the input level
<fieldset submitButton="false">
<input type="checkbox" token="tokErrorLevel" searchWhenChanged="true">
<label>Error Level</label>
<choice value="F">F</choice>
<choice value="E">E</choice>
<choice value="W">W</choice>
<valuePrefix>errorlvl="</valuePrefix>
<valueSuffix>"</valueSuffix>
<delimiter> OR </delimiter>
<default>F</default>
</input>
</fieldset>
Now you could use the token $tokErrorLevel$ in your search which will add values based on the input selection
Dummy dashboard to try
<form>
<label>CheckBox</label>
<fieldset submitButton="false">
<input type="checkbox" token="tokErrorLevel" searchWhenChanged="true">
<label>Error Level</label>
<choice value="F">F</choice>
<choice value="E">E</choice>
<choice value="W">W</choice>
<valuePrefix>errorlvl="</valuePrefix>
<valueSuffix>"</valueSuffix>
<delimiter> OR </delimiter>
<default>F</default>
</input>
</fieldset>
<row>
<panel>
<html>
<h1>
$tokErrorLevel$
</h1>
</html>
</panel>
</row>
</form>
... View more