I am using extjs4.1 grid in aspnet mvc3 application. I have used checkboxrowselection model. the issue is : once the checkbox is checked,the row should not get highlighted in the extjs grid. How can i acheive this.
please help
I am using extjs4.1 grid in aspnet mvc3 application. I have used checkboxrowselection model. the issue is : once the checkbox is checked,the row should not get highlighted in the extjs grid. How can i acheive this.
please help
The purpose of the checkbox selection model is to select rows. In extjs, selecting a row means to specifically highlight it, what you want is just a logical selection. You should be using the user extension: Ext.ux.CheckColumn that ships with the core library. To gather the rows, you would need to do a query on the store where the models property is set to true for the data index you define on the checkcolumn.