sjivan / gwt-ext

Automatically exported from code.google.com/p/gwt-ext
0 stars 0 forks source link

grid record set values in column with check column config #539

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
When there is a column configuration checkbox selected and changed some value 
of any column of the record. If the line is checked checadi value is lost. The 
following correction:

Ext.grid.CheckboxSelectionModel.prototype.onRowUpdated = function(v, index, r){
Ext.grid.CheckboxSelectionModel.superclass.onRowUpdated.call(this, v, index, r);
    if(this.isChecked(index)) {
        this.grid.getView().onRowCheck(index);
    }
};

Original issue reported on code.google.com by marlon...@gmail.com on 20 Mar 2012 at 5:01