Refer following snippet
http://webix.com/snippet/39e0bb38
I want column id on click of the select button to know on which column I am filtering data. Or is it possible to get data table or grid contest. If I have multiple grid on the page how I come to know which grid have called to filter.
The filter controls are designed in such way that they do not know about their masters.
You can get master control from the popup like next
var select = $$(suggest.config.master);
but it will give you only the select control in the datatable. To access the datable you need to subclass the filter and create your own one, which will store info about source datatable.
http://webix.com/snippet/0f2b88af
Also, it can be done through html, but it is rather dirty solution.
Thanks!