Grid filtering

Hi,



I have several filters on my grid. When I select on any of it, I want to update each select option to only contain relevant value as a result to prior filtering. Is this possible?



Thanks



Florante




Since dhtmlxGrid version 2.1 you can access to the filter object using method getFilterElement(index) index - index of column. In other way you can paster custom filters to the header and attach necessary event to them. Please see more inforamtion here dhtmlx.com/docs/products/dht … d_ccingrid

You can use code similar to next
grid.attachEvent(“onFilterEnd”,function(){
grid.refreshFilters();
return true;
})