SelectAll option in pivot filter

selectAll:true doesn’t seem to help in filter for pivot.

Hello,
Yes, you are right, there is no such method in API of Pivot Table.
If you want to add multiselect to filter for pivot you need type:"multiselect":

filters:[
          {name: "name", type: "multiselect"}
        ]

Example: https://snippet.webix.com/0ubo1jbi

I got a workaround but it seems multiselect has some bug with onBlur event:
https://snippet.webix.com/h0b2agwe

Any solution?

Hello @vivekghatala

selectAll:true doesn’t seem to help in filter for pivot

selectAll is a property of ui.suggest only.
The Pivot “multicombo” filter is a full-featured control with the attached ui.suggest, so you can access its config and modify it in onFilterCreate event:

https://snippet.webix.com/7u6lojnm

Thanks. This works!

@Listopad

step 1:
In the name filter type ind and then click select All option.

Step2 :
Now click on the pivot configuration and in the rows section put only name

and click on apply.

Now check for the unselect option in the name filter it is not coming.

Since the data is selected in the step1 it should show unselect option instead it is showing again select all option.

how can we remove this bug?

@Listopad

Any update ???