Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

editable column

JTable table = new JTable(..){
  public boolean isCellEditable(int row,int column){
    return (column == 3);//the 4th column is not editable
  }
};
Source by coderanch.com #
 
PREVIOUS NEXT
Tagged: #editable #column
ADD COMMENT
Topic
Name
7+9 =