Hello,
I have a cube with a placeholder inside for filtering some data. When I change the placeholder value(in a parameterTextBox) from the dashboard the filters remains with old values.
The script that I used is:
var viewParameter = this.parentView.control.getViewParameterByName(“viewParameter5”);
viewParameter.invalidateParameterValueLastModifiedTime();
viewParameter.refreshAllAdapters();
this.parentView.control.adapters[112].control.bypassHierarchyCache=true;
([112] is my view parameter)
From what I saw, the filters remains with the same values as for default value of the placeholder.
My wish is to have always the updated values of filters by the data from dashboard(filtered by the placeholder).
How can I update the view parameters from dashboard?
Thank you!