I created a swt table that has 3 columns, the first is check column. I used this code:
table = new Table(container, SWT.CHECK | SWT.BORDER | SWT.V_SCROLL
| SWT.H_SCROLL|SWT.MULTI);
when I select one item, a text is created in the third colonne. the code is as below:
listener = new Listener() {
@Override public void handleEvent(Event event) {
if (event.detail == SWT.CHECK) {
final TableItem current = (TableItem) event.item;
if (current.getChecked()) {
final TableEditor editor = new TableEditor(table);
text = new Text(table, SWT.NONE);
editor.grabHorizontal = true;
}
I want to get the value of the cellule that matches the selected item with the third column but couldn't get it with a selectedItem.getText(2). Any help please?
