HI Team Can you please let me know if it is possible to display the different CSV files based on the drilldown value selected in parent table. Example: I have a search panel with the below dr...
See more...
HI Team Can you please let me know if it is possible to display the different CSV files based on the drilldown value selected in parent table. Example: I have a search panel with the below drilldown that set the value of the Application clicked in the parent dashboard: <drilldown> <condition match="isnotnull($raw_hide$)"> <unset token="raw_hide"></unset> <unset token="raw_APPLICATION"></unset> </condition> <condition> <set token="raw_hide">true</set> <set token="raw_APPLICATION">$row.APPLICATION$</set> </condition> </drilldown> Based on the value of the APPLICATION clicked on the parent Dashboard, i want to display the corresponding csv. If Application = "X", then i want to use the command , | inputlookup append=t X.csv If Application = "Y", then i want to use the command , | inputlookup append=t Y.csv If Application = "Z", then i want to use the command , | inputlookup append=t Z.csv OR Is it possible to display 3 different panels based on the APPLICATION selected in the parent Dashboard. i.e based on the value of the token set in the <drilldown> of the parent dashboard , can we display the different panel using <panel depends="$tokenset$"> Panel 1 using X.csv <panel depends="$tokensetX$"> Panel 2 using Y.csv <panel depends="$tokensetY$"> Panel 3 using Z.csv <panel depends="$tokensetZ$">