how_jtable_not_editable

Hello everybody,is there any way to make a JTable isn磘 editable without to have to implement "extends AbstractTableModel"?Thank you very much,Daniel Leyva
[182 byte] By [transistor47a] at [2007-10-3 3:44:22]
# 1

JTable table = new JTable(...){

public boolean isCellEditable(int row,int column){

return false;

}

};

Michael_Dunna at 2007-7-14 21:40:32 > top of Java-index,Desktop,Core GUI APIs...
# 2
Thank you Michael!!!!It works very fine!!!!!Thank you very much!!!!!Bye,Daniel
transistor47a at 2007-7-14 21:40:32 > top of Java-index,Desktop,Core GUI APIs...