Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
GoogleCodeExporter opened this issue Jan 20, 2016 · 0 comments
Open

Comments

@GoogleCodeExporter
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant