-
17 Nov 2010 8:38 PM #11
Have you tried explicitly emptying the cache (CTRL+SHIFT+DEL)?
-
18 Nov 2010 6:53 AM #12
Does the following work?
I removed the extend because i remember i had problems with extending an viewport once. Never
managed to get that working. All other Ext.extends work great tough.
Also i removed some unneccessary xtypes etc.
Oh and the renderTo and show stuff was kicked out too you don't need that in a Viewport
Code:Ext.BLANK_IMAGE_URL = '/Content/ext/images/default/s.gif'; Ext.onReady(function() { var vp = new Ext.Viewport ({ layout:'border', items: [ { region: 'north', tbar: [ { text:'Settings' } ] }, { region: 'center', collapseMode: 'standard', xtype: 'tabpanel', activeTab: 0, items: [{title: 'tab1' }] }, { title: 'Sidebar', region: 'west', width: 100, collapsible: true, autoWidth: true } ] }); });
-
18 Nov 2010 2:57 PM #13
Nope, I copied and pasted your code, after 2 refreshes Chrome rendered this:

Notice the tab panel on the very far right as well. Also, I still get the white space shown in my previous post on some refreshes.
-
19 Nov 2010 12:24 AM #14
Hmmm i am on 3.2.2 here tested in FF 3.6._current and Chrome 7.0 on Windows 7 Ultimate.
To test i simple replaced the onReady call of my real app with the code from my post above.
And i can not for the Life of me replicate the issue, in no Browser.
I hit the Refresh button in Chrome with and without Ctrl for like 20 times.
Your best bet would probably be to try without your custom CSS you might have and quadruple checking if no Extensions / overrides / custom components are interfering.
-
19 Nov 2010 4:41 PM #15
Aha!
At first I was disappointed in your reply, because I'm not using any custom CSS. But then it got me thinking and I figured it out!
The issue all along was that my HTML file had the ext-all.css stylesheet <link> tag AFTER all the <script> tags. It turns out that the Ext stylesheet was being loaded AFTER the javascript was processed. That explains the inconsistency as well, and it seems to not happen anymore.
Sorry for the stupidity all, and thanks for all the help!
-
20 Nov 2010 6:16 AM #16
Glad you Figured it out. Don't get scared by the starting issues. If you manage to work through those youll Be rewarded with gerat Productivity once you learn how to Fully leverage the Power of the framework.
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
[CLOSED] Wrong layout in Chrome and FF when tab gets activated
By lsaffre in forum Ext 3.x: BugsReplies: 2Last Post: 26 Oct 2010, 12:20 AM -
[CLOSED][3.x] fbar wrong button align to right on Chrome 3.0
By fr33m4n in forum Ext 3.x: BugsReplies: 5Last Post: 2 Dec 2009, 12:36 AM -
[CLOSED] Window:onEsc working inconsistently in FF3
By lexaux in forum Ext GWT: Bugs (2.x)Replies: 1Last Post: 20 Nov 2009, 7:33 AM -
[CLOSED] [2.2] locale/multi-lang.html renders wrong in FF
By Animal in forum Ext 2.x: BugsReplies: 2Last Post: 7 Feb 2009, 10:50 AM -
[2.0.1][CLOSED] wrong render with many panels ...
By njeudy in forum Ext 2.x: BugsReplies: 1Last Post: 26 Jan 2008, 5:53 AM


Reply With Quote