Au contraire, you can override getCellEditor(int row, int column)
in JTable. Also, your TableCellEditor interface also provides row
and column information.
For example:
public class ComboBoxEditor extends TableCellEditor {
Component getTableCellEditorComponent(JTable table, Object
value,
boolean isSelected,
int row, int column) {
return new JComboBox(getArray(row));
}
}
OK, thanks a lot, then the best solution for me is to have a not
edotable editor )))
In the mean time i've tried a solution using a tooltip in html...
best,
Yvon
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Java-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/java-dev/email@hidden