How can i have access to the pivot filters fields

Hi,
How can i get access to the pivot filters fileds(example: multiselect filter i need change popup settings).

Thanks.

Hi,

You can customize filters configuration via onBeforeRender event:

...
view: "pivot",
on:{
    onBeforeRender: function(config){
	var filters = config.filters;
        // ... 
    }
}
...