Hybrid View
-
2 Aug 2010 7:04 AM #1
[2.1.3 / 2.2.0 Beta] Dialog + Firefox = Maximize bug
[2.1.3 / 2.2.0 Beta] Dialog + Firefox = Maximize bug
Hi,
there is a bug with maximized dialogs (that means GXT windows with a buttonbar):
- the maximized height is larger than the container height, a scrollbar is visible and the buttonbar is below the botton viewport edge
- the buttonbar gets a strange color
- this only happens in firefox (3.6.x here)
- this also happened in 2.1.3, so it's not a 2.2.0 specific bug
The test case is extremely simple:
let me know if you need more informationPHP Code:import com.extjs.gxt.ui.client.widget.Dialog;
import com.google.gwt.core.client.EntryPoint;
public class GxtBugs implements EntryPoint {
public void onModuleLoad() {
Dialog dialog = new Dialog();
dialog.setMaximizable(true);
dialog.setSize(400, 400);
dialog.show();
dialog.maximize();
}
}
regards
-
2 Aug 2010 7:12 AM #2
Works fine for me against both versions. Can you post a screenshot of how it looks like? Can you publish the build version of this somewhere, so i cna access this?
-
2 Aug 2010 7:16 AM #3
Just was able to reproduce it. It is the shadow, it should get hidden while maximized.
-
2 Aug 2010 7:24 AM #4
Does the shadow also have influence on the dialog content?
Because the dialog itself looks larger than it should be (which means the area between the titlebar and the buttonbar is too large).
I can't add attachments here because my firefox freezes when I close the attachments window for some reason.
Do you already have a possible fix for it?
-
2 Aug 2010 7:27 AM #5
It does not look larger for me. The shadow just makes scrollbars appear for me on the body element.Because the dialog itself looks larger than it should be (which means the area between the titlebar and the buttonbar is too large).
try to callbefore showing the dialog to see if this fixes the problem.Code:com.google.gwt.user.client.Window.enableScrolling(false);
You can also send me the screenshot by sven@sencha.com
-
2 Aug 2010 7:31 AM #6
This doesn't fix the problem.
I added a screenshot to the original post. Maybe it helps.
-
2 Aug 2010 7:32 AM #7
Does not look like that for me at all. Is it possible you can compile that application and upload it somewhere so i can access it?
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
Ext.Window horizontal maximize bug
By yohendry in forum Ext 3.x: Help & DiscussionReplies: 0Last Post: 3 May 2010, 10:23 AM -
bug Window.maximize()
By luisve in forum Ext GWT: DiscussionReplies: 1Last Post: 26 Apr 2010, 12:39 AM -
Cursor not visible while going into dialog inside dialog fields in firefox 2.0
By JDevloper in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 4 Feb 2008, 10:37 PM -
Basic Dialog: Hide minimize/maximize buttons
By rakshith in forum Ext 1.x: Help & DiscussionReplies: 2Last Post: 23 Apr 2007, 1:08 AM


Reply With Quote