I have a dashboard that uses a dbxquery in the base search. I would like to make the dashboard "bilingual". Is it possible to alter the behavior of the dashboard and select a different base search depending on the value of a drop down or radio button? For example, selecting the first of the two options should have this base search be used: <search id="base1"> <query>| dbxquery shortnames=true output=csv connection="CON_1" query="use [DB1] select TimeRaised as 'TimeTriggered', ...</query> ...while selecting the 2nd of the two options would use this one: <search id="base1"> <query>| dbxquery shortnames=true output=csv connection="CON_2" query="use [DB2] select TimeRaised as 'TimeTriggered', ...</query>
... View more