On 7 déc, 22:18, jdw <[email protected]> wrote: > I'm extending the PopupPanel class to create my own dialog box. > Everything works great. When I show my dialog box I noticed that the > scroll wheel on the mouse only scrolls the page if the mouse is over > the dialog. If the mouse is outside the dialog, using the scroll > wheel does not scroll the page. On the GWT showcase of features page, > this same behavior can be seen with the DialogBox example. Any ideas?
That's because of the "modal" behavior of the DialogBox/PopupPanel, or more exactly how it is implemented in GWT. You'd rather use a non- modal popup/dialog with setGlassEnabled(true) (since GWT 2.0 RC2). (and not only wheel scroll doesn't work, but you cannot use scrollbars either) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
