-
13 Nov 2012 11:52 AM #1
Answered: view.selModel is undefined with locked column
Answered: view.selModel is undefined with locked column
Hi,
I am trying to implement a locking column in a grid but get an error in FF:
When debugging, I can see that the error comes up in Ext.grid.plugin.Editing and view does contain two more views with selection models set: normalView and lockedView.Code:TypeError: view.selModel is undefined
I tried the examples and they work fine, so I wonder where this comes from. I simply set the first column to locked:true and the others to locked:false
The grid looks like this:
Can anyone give me a hint what I am doing wrong?Code:Ext.define('My.grid.Panel', { extend : 'Ext.grid.Panel', alias : 'my.grid.panel', autoHeight : true, selModel : Ext.create('Ext.selection.RowModel', { singleSelect : true }), resizable : false, frame : false, plugins : [ { ptype : 'rowediting', clicksToEdit : 2, pluginId : 'rowediting', listeners : { canceledit : function(editor, e, eOpts) { e.grid.store.removeAt(0); } } } ], tbar : [ { text : 'Add' } ], listeners : { activate : function(grid) { grid.store.load(); } }, viewConfig : { stripeRows : true } });
I am working with ExtJS 4.1.1a, so maybe it is just a version too early?
Thank you,
Oliver
-
Best Answer Posted by mitchellsimoens
I'm not getting that error when I lock a column in the row-editing example.
-
15 Nov 2012 6:45 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,682
- Vote Rating
- 435
- Answers
- 3111
I'm not getting that error when I lock a column in the row-editing example.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
18 Nov 2012 6:26 AM #3
Hi, Mitchell,
thanks for testing. I think I will have to check my whole app to find out where the problem is then. Maybe there is some wrong order of initializing the components or so.
Regards,
Oliver


Reply With Quote