Originally Posted by
copeg
1) have the isCellEditable method return true for the cells which are editable 2) override the setValueAt method to actually set the value the user entered. If you still have problems, post an SSCCE
i'm not sure how to do that i've look everywhere, but no luck. i'm not very experience in using j table.
This is what I have for my edit button
Editbutton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
boolean isCellEditable = true;
table.setValueAt(aValue, row, column);
}
});