Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/03/2014, 08:00
rya1719
 
Fecha de Ingreso: marzo-2014
Mensajes: 1
Antigüedad: 10 años, 2 meses
Puntos: 0
Respuesta: problemas jtable setcelleditor

En tu TableModel, te falta decir que columnas pueden ser editadas.

Código:
    /*
     * Don't need to implement this method unless your table's
     * editable.
     */
    public boolean isCellEditable(int row, int col) {
        //Note that the data/cell address is constant,
        //no matter where the cell appears onscreen.
        if (col < 4) {
            return false;
        } else {
            return true;
        }
    }
Saludos.