How to edit SWT table Values without Using Mouse Listeners?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Do the
TableEditorsnippets in the below link help?SWT Snippets
The first example in the
TableEditorsection uses aSelectionListeneron the table (unlike the second example which uses a MouseDown event you mentioned you don’t want)You could perhaps make use of the
TraverseListenerorKeyListenertoo to help you achieve what you want.