This question is about how I could add a multi-selection ComboBoxCellEditor
, or a multiple BooleanCellEditor
to a cell in a TableViewer
. The main aim is to have a multi selection in a cell.
I am using the snippets at http://wiki.eclipse.org/index.php/JFaceSnippets and http://www.eclipse.org/swt/snippets/, and I now have a fairly good Table using TableView
with all editing supports, label providers, content providers. Inside the cells I now have a TextCellEditor
or a ComboBoxCellEditor
.
The thing is: I want a multiple selection, and I don't know how.
The code of
org.eclipse.nebula.widgets.nattable.edit.editor.ComboBoxCellEditor
seems to have multipleselection, but I am having always ajava.lang.NoClassDefFoundError
while trying to use the external Nebula classesThe JFace snippet
Snippet061FakedNativeCellEditor
provides me with only one checkbox, and adapting this code to my code is difficult.
Many thanks.