Есть грид. В нескольких колонках установлен фильтр #select_filter_strict. Как мне в событии onFilterStart узнать какой именно фильтр менялся только что?
There is no way to find out which filter has been changed. But you can use parameter of “onFilterStart” event handler to find out values and indexed of grid filters:
grid.attachEvent("onFilterStart", function(indexes,values){
//any custom logic
});