vote up 1 vote down star

Current solution:

  • user clicks on label and it is switched with a textarea to allow edit
  • user can leave edit with tab / enter and textarea is switched back to a label

The problem is the user has to click on the label with a mouse to get into edit mode. I would like the label to recieve an onFocus event when the user clicks the TAB key and the label is the next widget in line.

Possible soulution (but have not tried yet) to inherit a new widget from the Label widget and implement the TabListener interface.

flag

1 Answer

vote up 3 vote down check

There is a panel called the focus panel. That panel allows widgets that normally dont receive events like keyboard events (e.g., a label is one) to have events.

checkout the docs here

link|flag
This probably is it ... will try. – Drejc Jan 16 at 13:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.