Paging and POST in dhtmlxGrid

Hi,
I’ve question about this feature: dhtmlx.com/docs/products/kb/inde … load%20xml
I need to use paging, but it seems this extension does’n support it, is it? Is there any workound, how to use POST and paging?
Thanx in advance,
Lubos

In dhtmlxgrid 2.0 you can use next code

grid.attachEvent(“onDynXLS”,function(start,count){ //will be called for dyn. loading attempt
grid.post(“some.php”,“start=”+start+"&count="+count); //custom loading code
return false; //blocking native loading functionality
});

Thanx, it works fine!