Hello,
I have a main dashboard with 3 subcanvas view containers. In each subcanvas container is a different dashboard with multiple metric sets. I have a radio button list on the main dashboard with 2 selection options. When the selection is changed in the radio button list, I would like to toggle what metric sets are being displayed in each subcanvas view.
I will admit my Javascripting skills are very basic, so I may not even be close on coming up with a solution, but below is the logic I have been playing around with…
if(radioButtonList1.items[0].isChecked == true)
{
subCanvasViewContainer1.getContainedAdapters(“23b3ccab-90e5-414f-9961-cd2b51f0ef13”).hidden = false;
};
if(radioButtonList1.items[1].isChecked == true)
{
subCanvasViewContainer1.getContainedAdapters(“23b3ccab-90e5-414f-9961-cd2b51f0ef13”).hidden = true;
};
23b3ccab-90e5-414f-9961-cd2b51f0ef13 is the id of one of the metric sets within the dashboard on subCanvasViewContainer1
Any help you can provide would be appreciated.
Thanks,
Chuck