Hi -
I am trying to implement a JTable that will not allow the user to edit any of the cells. Does anybody have an idea of how to do it? I am at my wits end. Any help will be appreciated.
- Florence
Printable View
Hi -
I am trying to implement a JTable that will not allow the user to edit any of the cells. Does anybody have an idea of how to do it? I am at my wits end. Any help will be appreciated.
- Florence
In the isCellEditable( int ,int) of your TableModel,always return false
public boolean isCellEditable( int,int)
{
// return false for all cells
return false;
}