In evaluating SmartGWT for our company use I'm porting the demo GWT app that makes a round trip client/server call and displays the results in a dialog.
In GWT the form submission has an event handler that looks at the integer keycode on the KeyUpEvent, but in SmartGWT, the only functionality appears to be getting the "name" of the key - per the Javadocs, "A" or "Enter."
Several questions:
is this entirely kosher?
is the name of the key locale independent?
what happens if I have a non-Latin keyboard or a letter with an accent mark?
is there a "best practices" way of getting the key that was hit from the user?
Thanks.
In GWT the form submission has an event handler that looks at the integer keycode on the KeyUpEvent, but in SmartGWT, the only functionality appears to be getting the "name" of the key - per the Javadocs, "A" or "Enter."
Several questions:
is this entirely kosher?
is the name of the key locale independent?
what happens if I have a non-Latin keyboard or a letter with an accent mark?
is there a "best practices" way of getting the key that was hit from the user?
Thanks.
Comment