I am using a JTable to display information from an Access Database and i have a few questions which i hope can answer.
1) How can you get a full row select in a Jtable, where the whole row/record is selected, rather than an individual entry?
2) Is it possible for the cells that are displayed in the JTable to be uneditable?
Thanks in advance
12-28-2004, 08:27 PM
Phaelax
1)
I think this is the method.
JTable.setSelectionMode();
2)
override the isEditable() method by creating your own Renderer class. (I think that's it) Or maybe it was the TableModel? Sorry, I can't remember at the moment.