Threaded 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
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