-
4 Sep 2012 8:10 AM #1
limt of pagination
limt of pagination
Hi,
Where to set the limit of the pagination.
where to include:Code:dockedItems: [{ xtype: 'pagingtoolbar', store: 'ResultGrid', // same store GridPanel is using dock: 'bottom', displayInfo: true, pageSize:10, displayMsg: 'Displaying topics {0} - {1} of {2}', emptyMsg: "No topics to display", }
this.getResultGridStore().load({
params:{
start:0,
limit: 10
}
});
in a MVC str.
-
4 Sep 2012 10:47 AM #2
Set the pageSize in the toolbar and in the store. Make sure your server response included the total records so it can calculate the pages: ex: totalProperty: 'total'
Scott.


Reply With Quote