2 Comments
- rapidbisupportData Pipeline
Given you can access the current filters of the embedded dashboard, you can loop through them and then apply a 'all members' for each.
You should be able to achieve this like this:
sisenseFrame.dashboard.getCurrent().then((res) => { res.filters.forEach((f) => { f.jaql.filter = { all: true } sisenseFrame.dashboard.applyFilters({ jaql: f.jaql }) })})
Similarly, you could getCurrent() for widgets and applyFilters for filters in filters as above.
I'd love to hear if this works for you?
Thanks,
Daniel
RAPID BI
RAPID BI - Sisense Professional Services | Implementations | Custom Add-ons
- DRayAdmin
That is a possible workaround. This is asking for an easier way to do it with a single call.
- DRayAdminStatus changed:New IdeatoNeeds Votes & Comments