Hello
I just found that the mousewheel event is working in all browsers but
not in Firefox 3 (3.0.7)

using a simple new GWT appl with:

    public void onModuleLoad()
    {
        HTML sp = new HTML("Hello World");
        RootPanel.get().add(sp);

        sp.addMouseWheelHandler(new MouseWheelHandler()
        {
            public void onMouseWheel(MouseWheelEvent event)
            {
                Window.setTitle("A: "+new Date().getTime());
            }
        });
    }

it doesn't work...
maybe it is using mousewheel instead of DOMMouseScroll (?)

TIA



--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---

Reply via email to