Success! Looks like we've fixed this one. According to our records the fix was applied for
EXTJS-3318
in
a recent build.
-
Sencha User
Using checkbox selection model in the editable grid produces an error
REQUIRED INFORMATION
Ext version tested:
Browser versions tested against:
- IE 9.0.8112.16421
- FF 5, firebug 1.7.3
- Opera 11.11
- Chrome 12.0.742.100
- Safari 5.0.5
Description:
- If a grid is editable and has the checkbox selection model, then the following error occurs when selection the checkbox:
column.getEditor is not a function
editor = column.getEditor(record);
ext-all-debug.js (line 80534)
Steps to reproduce the problem:
- Create an editable grid with the plugin
var cell_editing = Ext.create('Ext.grid.plugin.CellEditing', {
clicksToEdit: 1
}); - Use Ext.selection.CheckboxModel as the selection model
- Try to select a row by clicking the checkbox. The browser shows the error described above
The result that was expected:
- The row should be selected.
The result that occurs instead:
- The row is selected.
- The browser shows javascript error described above.
HELPFUL INFORMATION
Debugging already done:
- Apparently, by clicking on the checkbox, the checkbox column for selections is treated as an usual editable column, what is wrong.
Possible fix:
Additional CSS used:
Operating System:
-
Sencha User
same here.
I also get the same error. Whenever I check uncheck the column , I get above mentioned error.
-
Sencha User
Formatted with the new bug report template
-

Originally Posted by
Qtx
Formatted with the new bug report template
Awesome!!!! Thank you very much!!! Let me verify and see what's going on
-
-
Sencha User
Dev team any update on this particular issue?
-
I just tested against our latest code and the cell editing plugin is working with the checkbox selection model. However, I tried to select a row using the checkbox selection model with the row editing plugin and I get an error.
-
Sencha User
Yes, I pointed out exactly this error that occurs when selecting the checkbox for the selection of a row. Normal editing of a normal editable cell works well.
-
Sencha User