Detect datatable's header selection changes

Hi,

Are there any possibilities to detect selectFilter or serverSelectFilter on column’s header?

Here is my snippet to work with:
https://snippet.webix.com/57y9xxs4

So the idea is when the “Category” or “Year” selection changed, it will trigger another event/function.

Thank you

Anybody has idea?

hello @tengkie ,

Please check this.

https://snippet.webix.com/6ar2i3uz

Or you can use getFilter("name"), it returns an HTML element:

var eventId = webix.event($$("sample-table").getFilter("year"), "change", function(){
webix.message("selectFilter") 
});

Example: Code Snippet