I have a table which is getting data from one of our indexes, somewhat like below:  <table>  <title>Tech Spec Values for Selected Node:</title>  <search>  <query>index=test_index_prod sourcetype="SPEC"  | eventstats max(rundate) as maxDate, max(runtime) as maxTime, count as fno  | where rundate=maxDate AND runtime=maxTime  | search node="$form.tokenNode$" outcome="$form.tokenSwitch"  | table node, outcome, name, class, resource  | sort node, name</query>  <earliest>-24h@h</earliest>  <latest>now</latest>  </search>  <option name="drilldown">cell</option>  <drilldown>  <set token="tokenNode">$click.value$</set>  <set token="tokenSwitch">$click.value$</set>  </drilldown>  </table>     And then I have two radio button fields with token names as tokenNode & tokenSwitch with both having different values. I want the drilldown to happen when any of the radio button value is selected by user from the two radio button input fields. 
						
					
					... View more