sivarajankumar / gwt-cal

Automatically exported from code.google.com/p/gwt-cal
0 stars 0 forks source link

Strange behavior with Chrome and DialogBox.center() #180

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Displays a calendar with a large enough height to bring up the scroll bar of 
the browser. Eventually reduce the size of the browser.
2. Down the scroll bar to the bottom.
3. Show DialogBox centered (in onTimeBlockClick() for example).

What is the expected output? What do you see instead?
DialogBox should appear centered on the screen. Sometimes it works, sometimes 
the scroll bar up and DialogBox is hidden.

What version of the product are you using? On what operating system?
"gwt-cal-0.9.4.jar", Chrome 27, Windows 7.

Please provide any additional information below.
No problem with Firefox.

Workaround:
In InteractiveWidgethideFocusPanel() replace 
        DOM.setStyleAttribute(focusPanel.getElement(), "position", "absolute");
        DOM.setStyleAttribute(focusPanel.getElement(), "top", "0");
        DOM.setStyleAttribute(focusPanel.getElement(), "left", "-10");
        DOM.setStyleAttribute(focusPanel.getElement(), "height", "100%");
        DOM.setStyleAttribute(focusPanel.getElement(), "width", "0");
with
        DOM.setStyleAttribute(focusPanel.getElement(), "position", "relative");
        DOM.setStyleAttribute(focusPanel.getElement(), "top", "0");
        DOM.setStyleAttribute(focusPanel.getElement(), "left", "0");
        DOM.setStyleAttribute(focusPanel.getElement(), "height", "1px");
        DOM.setStyleAttribute(focusPanel.getElement(), "width", "1px");

Original issue reported on code.google.com by dom....@gmail.com on 1 Jul 2013 at 10:04

GoogleCodeExporter commented 8 years ago
Hi dom,

The problem seems to be related with issue 134. Can you confirm?

I would need as detailed as possible replication steps.

Original comment by ctasada on 9 Oct 2013 at 8:44