Grid problem

hi ,

I want to do filterBy on my grid, but it was not filtering strictly
i.e. if my value is 10.120.120.1 then it will give results as
10.120.120.1, 10.120.120.10, 10.120.120.11 etc. How can i do strict
filtering??

I also want to add a checkbox in my grid header . My requirement is to
select/unselect all grid rows if header check box is
selected/unselected  respectively.

thanks

lalit gera


Hello,


here is the example of strict filtering:


grid.filterBy(COLUMN_INDEX,function(data){


return data==“10.120.120.1”;

});


Grid provides master_checkbox filter that executes the described functionality:



dhtmlx.com/docs/products/dht … r_num.html