-
8 Jul 2010 1:32 AM #1
a problem when a container shift between hidden and visible
a problem when a container shift between hidden and visible
They excue well in all browsers but only bad in browse with webkit engine,like Chrome and Safari, the corePart is still hidden after corePart.setVisible(true);PHP Code:var corePart = new Ext.Container({
hidden:true,
id: 'corePart',
layout: 'form',
items:[items1,item2]
});
var task = new Ext.util.DelayedTask(function(){
items1.setVisible(false);
items2.setVisible(false);
corePart.setVisible(true);
corePart.doLayout();
});
task.delay(1);
What's reason????
-
8 Jul 2010 5:42 PM #2
-
14 Feb 2011 6:49 AM #3
With Firefox and IE8 is working fine.
Problem when use by chrome.
Please help
NavahaoRegards
Navahao
-
14 Feb 2011 6:57 AM #4
Have you tried using show()?
Code:corePart.show();
Talk to me on Twitter @patmatsumura
Similar Threads
-
[FIXED] List on hidden panel is visible
By GaryW in forum Sencha Touch 1.x: BugsReplies: 7Last Post: 19 Jul 2010, 10:10 AM -
[OPEN-65][3.0.0] Container sometimes not doing layout even if it is visible
By Animal in forum Ext 3.x: BugsReplies: 3Last Post: 9 Aug 2009, 6:00 AM -
Hidden Panel gets streched after making it visible on IE
By vikky_25 in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 24 Feb 2009, 12:56 AM




Reply With Quote