Hi guys, im trying to use the reload method to pass additional data to a data-generating page, while also maintaining paging for a grid. for e.g.
ds.load({params:{start:0, limit:20}});
.........
.........
ds.reload({params: {delete: id}});
basically my aim is to remove an item while also refreshing the contents of the grid (to reflect this change).
The issue that im experiencing is that the paging properties dont end up getting passed into the data-generating page. Since the reload method is using ApplyIf, the 'param' properties exist in both objects, therefore not applying the paging properties to this additional parameter.
What would be the best way to go around this without actually editing Ext?
Thanks,
Lupco