Hi,
Im doin a project using JTable, i want to make my table cells editable. I used,
public boolean isCellEditable(int row, int column)
{
return true;
}
My problem is, the cells are ediable but once after entering data into one cell and move on to the next, the previous data gets erased... kindly any one help me...
|
|
|
||
|
|
|
|
Override setValueAt(Object value, int row, int col) method as well. It should store entered data, so getValueAt(int row, int col) method can return new value. Something like this:
|
||
|
|
|
|
|
||
|
|
