Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 5 down vote accepted

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

share|improve this answer
This probably is it ... will try. – Drejc Jan 16 '09 at 13:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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