-
19 Dec 2011 8:43 AM #1
Issue with BorderLayoutContainer
Issue with BorderLayoutContainer
BorderLayoutContainer example (http://www.sencha.com/examples-dev/#...e:borderlayout) has issues when one of the border regions is hidden. Its corresponding collapse icon remains visible in its original location even tho its region/panel is removed.
-
19 Dec 2011 9:06 AM #2
Additional issue regarding population of South region
Additional issue regarding population of South region
Porting working code from GXT 2.2 into 3.0 Beta 1, the South region content is appearing at "-height" above the North region. The effectively makes it invisible above the browser viewing area.
Using IE8.
Relevant code:
BorderLayoutContainer parentContainer = new BorderLayoutContainer();
parentContainer.setBorders(true);
int[] footerPanelSize = new int[] {height, width};
BorderLayoutData southData = new BorderLayoutData(footerPanelSize[0]);
southData.setMargins(new Margins(5, 0, 0, 0));
southData.setCollapsible(false);
southData.setFloatable(false);
southData.setCollapseHidden(true);
southData.setSplit(false);
footerPanel = new ContentPanel();
footerPanel.setHeaderVisible(false);
footerPanel.setHeight(footerPanelSize[0]);
footerPanel.setWidth(footerPanelSize[1]);
footerPanel.add(getFooter()); // routine creating simple HTML copyright statement for 'current' app
parentContainer.setSouthWidget(footerPanel, southData);
-
19 Dec 2011 10:07 AM #3
Same behaviors for placement of South region confirmed in Chrome and Firefox 3.6 using previous post's code snippet
-
19 Jan 2012 4:57 AM #4
At http://staging.sencha.com:8080/examp...e:borderlayout there is also a bug with the collapse-mini icon appearing on the left, after you collapse the north region. Try it out

Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote