-
5 Jul 2012 4:53 AM #1
Answered: Errro while using Ext.grid.CheckboxSelectionModel()
Answered: Errro while using Ext.grid.CheckboxSelectionModel()
Hi ,
I'm getting the following error popup while using Ext.grid.CheckboxSelectionModel()
Microsoft JScript runtime error: Object doesn't support this action
following is the line of error -
var checkBoxSelMod = new Ext.grid.CheckboxSelectionModel();
I am not able to identify whats going wrong.
Appreciate your help.
Thanks,
Ibrahim
P.S - using <script src="extjs-4.1.0/ext-all.js" type="text/javascript"></script> .js library.
-
Best Answer Posted by redraid
Ext.grid.CheckboxSelectionModel not exists in ExtJS4, use Ext.selection.CheckboxModel
PHP Code:var checkBoxSelMod = Ext.create('Ext.selection.CheckboxModel');
-
5 Jul 2012 5:04 AM #2
Ext.grid.CheckboxSelectionModel not exists in ExtJS4, use Ext.selection.CheckboxModel
PHP Code:var checkBoxSelMod = Ext.create('Ext.selection.CheckboxModel');


Reply With Quote