Any info or suggestions on how to avoid IE blasting a spray of beeps
when you hit an Enter key in an FormPanel TextBox?  It's very
annoying.

Here are a couple sites that show the problem using IE (IE7 in my
case):

http://examples.roughian.com/index.htm#Panels~FormPanel
-- set focus to either field and press enter.  Sprays many beeps

http://gwt-ext.com/demo/#multipleFieldForm
-- set focus to various fiends and press enter.  Different fields
spray different number of beeps.


Code that demos the problem.  Click either input box and press Enter.
Sprays beeps in IE:

    FormPanel fp = new FormPanel();
    fp.setAction("http://www.google.com";);
    fp.setMethod(FormPanel.METHOD_POST);
    fp.setEncoding(FormPanel.ENCODING_URLENCODED);

    TextBox name1 = new TextBox();
    name1.setName("name1");
    TextBox name2 = new TextBox();
    name2.setName("name2");

    VerticalPanel vp = new VerticalPanel();
    vp.add(name1);
    vp.add(name2);
    fp.setWidget(vp);

    RootPanel.get("root").add(fp);

Thanks.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to