I Still cannot make the tokens get values. I am showing the tokens in a panel just to see if checking the multiselect options changes the token values, but it doesn't:
<input type="multiselect" token="apps" searchWhenChanged="true">
<label>Apps</label>
<choice value="*">All</choice>
<choice value="app_unix">Unix</choice>
<choice value="app_patrol">patrol & FS</choice>
<choice value="app_skype">Skype</choice>
<choice value="app_bobis">bobis</choice>
<choice value="app_crm">L&S CRM</choice>
<choice value="app_ad">AD</choice>
<choice value="app_geoforce">geoforce</choice>
<choice value="app_buenavista">buenavista</choice>
<choice value="app_webmethods">WebMethods</choice>
<choice value="app_spi">SPI</choice>
<choice value="app_swaft">swaft</choice>
<choice value="app_ideas">IDEAS</choice>
<choice value="app_prices">Prices</choice>
<choice value="app_taxi">taxi</choice>
<change>
<unset token="tokShowAll"></unset>
<unset token="tokShowUnix"></unset>
<unset token="tokShowpatrol"></unset>
<unset token="tokShowSkype"></unset>
<unset token="tokShowbobis"></unset>
<unset token="tokShowCrm"></unset>
<unset token="tokShowAd"></unset>
<unset token="tokShowgeoforce"></unset>
<unset token="tokShowbuenavista"></unset>
<unset token="tokShowWebMethods"></unset>
<unset token="tokShowSpi"></unset>
<unset token="tokShowswaft"></unset>
<unset token="tokShowIdeas"></unset>
<unset token="tokShowPrices"></unset>
<unset token="tokShowtaxi"></unset>
</change>
</input>
</fieldset>
<search>
<query>
| makeresults
| fields - _time
| eval data="$apps$"
| makemv delim=" " data
| mvexpand data
| eval condition=case(match(data,"*"),"show_all",
match(data,"app_unix") AND
match(data,"app_patrol") AND
match(data,"app_bobis") AND
match(data,"app_skype") AND
match(data,"app_crm") AND
match(data,"app_ad") AND
match(data,"app_geoforce") AND
match(data,"app_buenavista") AND
match(data,"app_webmethods") AND
match(data,"app_spi") AND
match(data,"app_swaft") AND
match(data,"app_ideas") AND
match(data,"app_prices") AND
match(data,"app_taxi"),"show_all",
match(data,"app_unix"),"app_unix",
match(data,"app_patrol"),"app_patrol",
match(data,"app_bobis"),"app_bobis",
match(data,"app_skype"),"app_skype",
match(data,"app_crm"),"app_crm",
match(data,"app_ad"),"app_ad",
match(data,"app_geoforce"),"app_geoforce",
match(data,"app_buenavista"),"app_buenavista",
match(data,"app_webmethods"),"app_webmethods",
match(data,"app_spi"),"app_spi",
match(data,"app_swaft"),"app_swaft",
match(data,"app_ideas"),"app_ideas",
match(data,"app_prices"),"app_prices",
match(data,"app_taxi"),"app_taxi"
| eval show_all=case(condition="show_all","true")
| eval app_unix=case(condition="app_unix" OR condition="show_all","true")
| eval app_patrol=case(condition="app_patrol" OR condition="show_all","true")
| eval app_skype=case(condition="app_skype" OR condition="show_all","true")
| eval app_bobis=case(condition="app_bobis" OR condition="show_all","true")
| eval app_crm=case(condition="app_crm" OR condition="show_all","true")
| eval app_ad=case(condition="app_ad" OR condition="show_all","true")
| eval app_geoforce=case(condition="app_geoforce" OR condition="show_all","true")
| eval app_buenavista=case(condition="app_buenavista" OR condition="show_all","true")
| eval app_webmethods=case(condition="app_webmethods" OR condition="show_all","true")
| eval app_spi=case(condition="app_spi" OR condition="show_all","true")
| eval app_swaft=case(condition="app_swaft" OR condition="show_all","true")
| eval app_ideas=case(condition="app_ideas" OR condition="show_all","true")
| eval app_prices=case(condition="app_prices" OR condition="show_all","true")
| eval app_taxi=case(condition="app_taxi" OR condition="show_all","true")
| table show_all app_unix app_patrol app_skype app_bobis app_crm app_ad app_geoforce app_buenavista app_webmethods app_spi app_swaft app_ideas app_prices app_taxi
| stats max(*) as *
</query>
<done>
<condition match="$job.resultCount$!=0">
<eval token="tokShowAll">case(isnotnull($result.show_all$),$result.show_all$)</eval>
<eval token="tokShowUnix">case(isnotnull($result.app_unix$),$result.app_unix$)</eval>
<eval token="tokShowSkype">case(isnotnull($result.app_skype$),$result.app_skype$)</eval>
<eval token="tokShowpatrol">case(isnotnull($result.app_patrol$),$result.app_patrol$)</eval>
<eval token="tokShowbobis">case(isnotnull($result.app_bobis$),$result.app_bobis$)</eval>
<eval token="tokShowCrm">case(isnotnull($result.app_crm$),$result.app_crm$)</eval>
<eval token="tokShowAd">case(isnotnull($result.app_ad$),$result.app_ad$)</eval>
<eval token="tokShowgeoforce">case(isnotnull($result.app_geoforce$),$result.app_geoforce$)</eval>
<eval token="tokShowbuenavista">case(isnotnull($result.app_buenavista$),$result.app_buenavista$)</eval>
<eval token="tokShowWebMethods">case(isnotnull($result.app_webmethods$),$result.app_webmethods$)</eval>
<eval token="tokShowSpi">case(isnotnull($result.app_spi$),$result.app_spi$)</eval>
<eval token="tokShowswaft">case(isnotnull($result.app_swaft$),$result.app_swaft$)</eval>
<eval token="tokShowIdeas">case(isnotnull($result.app_ideas$),$result.app_ideas$)</eval>
<eval token="tokShowPrices">case(isnotnull($result.show_patrol$),$result.app_patrol$)</eval>
<eval token="tokShowtaxi">case(isnotnull($result.app_taxi$),$result.app_taxi$)</eval>
</condition>
<condition>
<unset token="tokShowAll"></unset>
<unset token="tokShowUnix"></unset>
<unset token="tokShowpatrol"></unset>
<unset token="tokShowSkype"></unset>
<unset token="tokShowbobis"></unset>
<unset token="tokShowCrm"></unset>
<unset token="tokShowAd"></unset>
<unset token="tokShowgeoforce"></unset>
<unset token="tokShowbuenavista"></unset>
<unset token="tokShowWebMethods"></unset>
<unset token="tokShowSpi"></unset>
<unset token="tokShowswaft"></unset>
<unset token="tokShowIdeas"></unset>
<unset token="tokShowPrices"></unset>
<unset token="tokShowtaxi"></unset>
</condition>
</done>
</search>
<row>
<panel>
<title>$apps$ $tokShowSkype$ </title>
</panel>
</row>
... View more