-
28 Apr 2011 2:35 PM #1
Paging Toolbar and Ext Designer
Paging Toolbar and Ext Designer
Please verify if my comments are accurate as help to others:
- When adding a paging toolbar, an ID is automatically given. But seeing as ID's need to be unique, this needs to be manually changed or you'll be getting other toolbars firing events and some unwanted rendering issues
- Although an autoRef is an option in Designer for paging toolbars, setting this will be ignored. Use the getBottomToolbar() method of the container the tool bar is docked in
- I add the store to the toolbar at runtime with:
but this seems to break showing the info portion of the toolbar i.e Page x of y doesnt show and neither do the arrows???Code:searchGrid.store = store; searchGrid.getBottomToolbar().store = store;
Solution:
Code:searchGrid.getBottomToolbar().bindStore(store);
Last edited by DrZog; 28 Apr 2011 at 2:59 PM. Reason: Solution
Similar Threads
-
Updating image on toolbar button and paging toolbar issues
By Jangla in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 9 Jul 2009, 1:21 AM -
Extjs paging toolbar for php paging
By speedytangent in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 29 Mar 2009, 2:14 PM -
[FIXED][3.x] Ext.form.ComboBox + Paging Toolbar errors when using remote paging
By jay@moduscreate.com in forum Ext 2.x: BugsReplies: 3Last Post: 15 Feb 2009, 4:54 PM -
Paging Toolbar not Paging
By deblasio in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 2 Oct 2008, 8:17 AM -
It's possible to bind a toolbar to DS? (not paging toolbar)
By Topper in forum Ext 1.x: Help & DiscussionReplies: 6Last Post: 15 Aug 2007, 3:07 AM


Reply With Quote