Sunday, July 3, 2011

Implementing isCellEditable


Because this sample does not allow users to directly edit the contents of the table (rows are added by another window control), this method returns falseregardless of the values of rowIndex and columnIndex:

  public boolean isCellEditable(int rowIndex, int columnIndex) {     return false;   }

No comments:

Post a Comment