I seem to have found some unusual behaviour - I have captured the
KEY_TAB event in the following code:

            public void onKeyPress(Widget sender, char keyCode, int
modifier) {
                firedKeyDown = true;
                switch (keyCode) {
                    case KEY_TAB:
                        parent.doTab(TableCell.this, modifier ==
MODIFIER_SHIFT);
                        break;
                }
            }

This causes the warning beep.  The exact same code using the enter key
does not.

                    case KEY_ENTER:
                        parent.doTab(TableCell.this, modifier ==
MODIFIER_SHIFT);
                        break;

Has anyone else experienced this?

Regards,
Pete

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