Я использую таблицу SWT, которая состоит из одного столбца, и я использую SWT TableEditor для редактирования значений столбца.
Когда я пытаюсь редактировать определенную строку, выбирается только текст этого конкретного TableItem.
Есть ли способ включить весь выбор этого элемента таблицы.
Мой код selectionListner для таблицы выглядит так:
final TableEditor editor1 = new TableEditor(table);
//The editor must have the same size as the cell and must
//not be any smaller than 50 pixels.
editor1.horizontalAlignment = SWT.LEFT;
editor1.grabHorizontal = true;
editor1.minimumWidth = 130;
final int keyEditableColumn = 0;
table.addSelectionListener(new SelectionAdapter()
{
public void widgetSelected(SelectionEvent e)
{
// Clean up any previous editor control
Control oldEditor = editor1.getEditor();
if (oldEditor != null) oldEditor.dispose();
// Identify the selected row
final TableItem item = (TableItem)e.item;
if (item == null)
{
return;
}
// The control that will be the editor must be a child of the Table
Text newEditor = new Text(table, SWT.NONE);
//Adding the list of Text Widgets that have been created for a component.
textWidgetsList.add(newEditor);
newEditor.setText(item.getText(keyEditableColumn));
newEditor.addModifyListener(new ModifyListener()
{
public void modifyText(ModifyEvent me)
{
.....
.....
.....
.....
.....
}
});
newEditor.selectAll();
newEditor.setFocus();
editor1.setEditor(newEditor, item, keyEditableColumn);
}
});
Пожалуйста, дайте мне знать ваши предложения ....