-
20 Aug 2010 7:49 AM #1
[SOLVED] Two ToolBars in GridPanel - Bottom of scrollbar hidden
[SOLVED] Two ToolBars in GridPanel - Bottom of scrollbar hidden
I have a GridPanel and I need to put two scrollbars at the top. I have done that by adding a second scrollbar to the GridPanel on the 'render' event. The toolbar displays, which is great, but what then happens is that the scrollbar and the bottom of the grid gets cut-off and is not visible, so you can't get to the bottom of the grid.
I see what is happening is that the div with class "x-grid3" height doesn't take into account the extra toolbar that is part of the panel-body, and/or (depending on how you want to look at it) that the scroller height doesn't take into account the extra toolbar.
My grid is part of layout like this (tabpanel w/3 columns, each column having a grid):
Before I had each grid nested in a panel w/layout of hbox so that I could get the second toolbar - one from the panel and one from the grid. I was trying to reduce my nesting by adding a second toolbar to the GridPanel directly, but now I have these scroll issues.Code:Panel - layout: border, plugin: FitToParent TabPanel - region: center, layout: fit Tab - layout: hbox grid1 - flex:2 grid2 - flex:3 grid3 - flex:4
Is there some way to fix the scroll issue w/two toolbars on the top of a gridpanel, or do I need to go back to my more nested design? (Which, looking back on, maybe panel w/layout 'fit' would work better?).
thanks,
AnnieLast edited by aghextjs; 20 Aug 2010 at 10:31 AM. Reason: trying to fix indentation on layout; solved!
-
20 Aug 2010 10:06 AM #2Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 41
Use:
}Code:tbar: { xtype: 'container', layout: 'anchor', defaults: {anchor: '0'}, defaultType: 'toolbar', items: [{ items: [...] // toolbar 1 }, { items: [...] // toolbar 2 }] }
-
20 Aug 2010 10:27 AM #3
Thanks Condor, works great!
Similar Threads
-
bottom scrollbar in gridPanel
By Vichingo in forum Ext 2.x: Help & DiscussionReplies: 3Last Post: 28 Nov 2008, 8:29 AM -
Gridpanel bottom scrollbar
By bhaskar1605 in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 7 Oct 2008, 7:20 AM -
Bottom Scrollbar Arrow Hidden By Browser
By mstead in forum Ext GWT: Help & Discussion (1.x)Replies: 2Last Post: 17 Sep 2008, 5:27 AM -
[CLOSED] Bottom of Scrollbar hidden in DataList
By Zorn in forum Ext GWT: Bugs (1.x)Replies: 1Last Post: 2 Aug 2008, 10:04 AM -
Adding 2 toolbars to GridPanel.tbar removes horiz scrollbar
By Ephicient in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 10 Feb 2008, 12:11 PM


Reply With Quote