Pivot Table - filter - change width of popup

Hello,

I have a issue, I can’t modify the popup width of a filter.
I use onFilterCreate and change the optionWidth, but that doesn’t work.

https://snippet.webix.com/dj0y4g13

How I can resolve this problem ?

Regards

Note:
I can use suggest with fitMaster, but in this case I lost the selectAll button.
https://snippet.webix.com/xftl0iw4

Hello,

You can extend the filter options object with the necessary properties, both fitMaster and selectAll while providing the desired width for the popup:

webix.extend(filter.options, {
    selectAll:true,
    fitMaster:false,
    width:500
});

https://snippet.webix.com/wlq0qyca

Thanks a lot.