Hi,
I have my grid up and running:) As I use smartrendering and filter doesn’t work by default, I use the custom filter functionality (it works fine). But each time you enter smth to the search field, the grid container resizes to be a little bit “smaller”…
Here is my refresh code:
functi0n doOnFilterStart(indexes,values){
$.ajax("$gridURL&search="+values).
success(function(data){
dhtmlxPartyGrid.clearAll();
dhtmlxPartyGrid.parse(data,“json”);
}
);
}