tags:

views:

150

answers:

1

How to edit SWT table Values without Using Mouse Listeners?

A: 

Do the TableEditor snippets in the below link help?

SWT Snippets

The first example in the TableEditor section uses a SelectionListener on the table (unlike the second example which uses a MouseDown event you mentioned you don't want)

You could perhaps make use of the TraverseListener or KeyListener too to help you achieve what you want.

danmec