numeric_filter in paging mode is not working???

Hi
The grid use the paging mode.Every page show 50 records.
One column header type user “ron” and filter use “numeric_filter”.

But when i input “>0”,the grid just filter the current page in the first 50 records.
how can i fix it???

Unfortunately the problem cannot be reconstructed locally.
numeric_filter works well in case of using the static loading of data with the paging mode.
Please, note, that the filter won’t work in case of dynamic loading of data.

i use the gr.enableDistributedParsing(true,10,300);
the other filter is working well .just numeric_filter is not work.

The problem still cannot be reproduced locally.
Could you pleas,e provide with a simplified complete demo or share with a demo link, where the problem can be reconstructed.

I found the problem。
The column set the type " ro[=c7-c8]"
Then in the paging mode .The numeric_filter and the footer stat_total is both not working.

Is it use coltype with the math type,the grid load page mode .Then filter and footer stat_total is not workiing??

Unfortunately the math calculation for the unrendered rows cannot be performed.
You may try to render all the rows manually:
grid.attachEvent(“onXLE”, function(){
for (var i=0; i<grid.getRowsNum(); i++)
grid.render_row(i);
});