I use JFace DialogCellEditor
to show a button in a cell of a row of my JFace TableViewer
which triggers a dialog when activated. This behaviour works w
You can only edit one Viewer
cell at a time. Viewer
won't support editing multiple cells at a time unless you do some customization.
I can think of following solutions.
Paint widget ( button, text, combo..etc) like image on table cell and invoke
CellEditor
when user activates it.
You can find some examples here about how to paint on Table
Cell.
http://www.eclipse.org/articles/article.php?file=Article-CustomDrawingTableAndTreeItems/index.html
I posted an answer about how to show button in table cell here. you can following the same concept with CellEditor
SWT - Tableviewer adding a remove button to a column in the table