Grid Filtering

in Grid when we filtering if recode not match with any how we show message on grid.

Hello,
in Grid when we filtering if recode not match with any how we show message on grid. (sorry wrong image)

For showing the notification you may try to use the solution similar to the one in the following sample:
dhtmlx.com/docs/products/dhtmlxG … ation.html
The next code allows you to get the number of the visible rows after the filtering:

var val mygrid.attachEvent("onFilterEnd", function(elements){ val= [] mygrid.forEachRowA(function(id){ val[val.length] = id }) if(val.length=="0"){ console.log("empty") } });

its work Thank you so much :stuck_out_tongue: