Hi,
In my ListGrid which uses RestDataSource I need to send a flag to the server and then resort the grid using server-side sort. So I have tried:
grid.setCriteria(criteria);
grid.sort(fieldName, direction);
However it looks like the call to setCriteia() is making a server request to get updated data. Is there way to set grid's criteria without it requesting the data, and have it issue a request only when sort() is called?
Regards.
PS: I am using SmartClient 9 and IE9
In my ListGrid which uses RestDataSource I need to send a flag to the server and then resort the grid using server-side sort. So I have tried:
grid.setCriteria(criteria);
grid.sort(fieldName, direction);
However it looks like the call to setCriteia() is making a server request to get updated data. Is there way to set grid's criteria without it requesting the data, and have it issue a request only when sort() is called?
Regards.
PS: I am using SmartClient 9 and IE9
Comment