hi @alexander.reiber The easy way to implement this, is to have all dashboard options available on a master dashboard, and the master dashboard will have view parameter that do parameter mapping and navigation to each dashboard.
Otherwise, it is possible to remember the user’s filter selection with a global variable through the browser’s session storage feature, and later on each time a new dashboard is loaded, check if the global variable’s value and apply it.
With session storage, Dundas BI will store the data locally within the browser, such data can be then retrieved by other dashboards/webpages,
For example, if you want to pass a string “test” it will look like this in the dashboard:
sessionStorage.setItem(“defaultvalue”, “test”);
But in this case, you want to remember the value from a specific filter control, so it will be like:
var value=parameterHierarchy1.control.parameterValue.Values[0];
sessionStorage.setItem(“defaultvalue”, value);
Then in the other dashboards retrieve it back:
var item= sessionStorage.getItem(“defaultvalue”);
Once the value is retrieved, you need to set the view parameter value by script. We have examples here:
http://www.dundas.com/support/support-center/support-articles/scripting/set-filter-value-by-script