If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.
Hello,
I'm wondering if there's a way to automatically clear all filters each time a specific sheet is opened.
Thanks
Kendrick
Hi Kendrick,
Sheet Properties > Triggers >
On Activate Sheet > Add Action > Add > Selection > Clear All
HTH - Andy Sample attached
Possible with custom extension.
drop extension on sheets where you want selection to clear
example code ..
define( ["qlik"], function ( qlik ) {
'use strict';
return {
paint: function ( $element, layout ) {
var app = qlik.currApp();
app.clearAll();
}
}
} );
Hi Andrew,
Where is the 'Triggers' selection located under 'Sheet properties'? I am on a Qlik Sense dashboard, not Qlik View.
Thanks
Hi Kendrick,
sorry didn't spot that, don't think they are available yet!
Andy
did you manage to find something Kendrick ?