-
29 Apr 2011 12:50 AM #1
Windows contraint inside div does not work in firefox
Windows contraint inside div does not work in firefox
Hi
I have four windows that are renderedTo a div.
i have set the costraint as true.
Now when i run the Code in interned explorer it works fine.
But when i run in firefox it does not show any of the windows.
Can Anyone help.
If i remove the renderTo div attribute of the window. it diplays as well in firefox.
But my requiremnets are to constraint the windows inside the div2 while dragging.
Please Help.
Thease Are My Divs
<divid="div1"style="top: 0px; left: 0%; width: 99.9%; height: 30px;overflow:hidden; position:fixed">
</div>
<divid="div2"style="top: 30px; left: 0%; width: 100%; height: 100%; overflow:hidden;position:fixed">
</div>
I have Four Windows Like This
var win;
win = new Ext.Window({
id: 'Window1',
x: 0,
y: 0,
constrain: true,
width: 300,
height: 200,
renderTo: div2,
title: 'Groups',
maximizable: true,
frame: true,
draggable: true,
resizable: true,
autoScroll: true,
closable: false,
bodyStyle: 'padding:5px;',
layout: 'fit',
plain: true,
buttonAlign: 'center',
items: formGroups,
buttons: [{
text: 'Add Group',
id: 'btnAddFan',
handler: function() {
alert('Add Fan Page Clicked')
}
}
]
});
win.show();
Also Note that i am placing a toolbar at the top rendering to div1 that is displayed fine.
-
5 May 2011 5:51 AM #2
Thease Are the following observation.
When we Have a window constraint inside a div.
it shows in ff as well as ie.
But when we have a form as an item to a window
it fails to show up in ff.
Mostly its a bug in extjs
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
focus not working in windows mozila firefox
By frank_ash in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 21 Oct 2009, 8:21 PM -
Grid Scrollbar not displaying in FireFox on Windows
By EoN in forum Ext 2.x: Help & DiscussionReplies: 7Last Post: 10 Feb 2009, 4:48 PM -
firefox keyboard lock out when switching windows
By dancaragea in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 17 Mar 2008, 9:37 AM -
odd rendering Firefox and multiple windows
By wisecounselor in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 12 Dec 2007, 8:10 AM -
Grid inside BorderLayout inside Tab (Firefox-only), animate
By dragontree in forum Ext 1.x: BugsReplies: 0Last Post: 29 Jun 2007, 5:52 AM


Reply With Quote