Hi, I'm doing a mini project using JTable
.
I used the Vector
type for the row values. For example, public Vector textData = new Vector();
. The problem is when I edit the cells in the JTable
, it is editable but not keeping the changed value. That is, when I enter data in 1 cell and move on to next cell, the previous data is not updated.
Is it possible to edit cells when declared as Vector
?