Reputation: 26301
I use Ext.grid.Panel
with proxy store and pagingtoolbar
. How can I set page number from code?
Upvotes: 4
Views: 8321
Reputation: 141
You may also use this if you want to pass more params:
store.load({
params: {
page: 2,
limit: 20,
myParam: 10
}
});
Upvotes: 3