XML configuration & JSON data: paging calls wrong method

Hi,

I’m trying to use XML for specifying the grid columns, but JSON to populate the data.

On page load, I’m doing this:

...
myGrid.enablePaging(true, 20, 5, "mygrid_paging", true, "mygrid_info");
...
myGrid.loadXML("/myController/myGridDef", function () {
                    myGrid.load("/myController/myGridData?=" + myGrid.uid(), "js");
                });

This works correctly at first, but when the paging logic attempts to request additional records,
it is calling the configuration method myGridDef instead of myGridData .

Is there some way to configure which method the paging logic calls for data?

Thanks!

Unfortunately it’s not available.
only the initial load can be used for paging.