I have a table that accepts multi selection. On this jtable I add a column that I add a combobox like this:
public void setPriorityEditor(final String columnName) {
final TableColumn col = ((BasicTableModel) table.getModel())
.findTableColumn(columnName);
col.setCellEditor(new PriorityComboBoxEditor());
}
I would like to implement a new feature: to can update several field using a combobox which is part of my selection. http://imageshack.us/photo/my-images/40/qyks.png/ My probleme begin when i want to select a row wich part in my selection avec select several row, selection is refresh and i have now just one row selected. Is it possible?
Summary : Try to update severals columns with multi selection. Rows contain a column with a combobox. Select severals rows and use a combobox(which is part of selected rows) for update all the rows specific column with the value of combobox.
Regards guys.