-
27 May 2010 11:58 AM #11
That's what I figured. Thanks.
--Stewart
-
30 May 2010 9:41 PM #12
great info!
here another trick to add CheckboxSelectionModel to designer exported grid.
a grid with autoref on a panel...
PHP Code:...
panel.superclass.initComponent.call(this);
...
//set the selModel
this.grid.selModel = new Ext.grid.CheckboxSelectionModel( {} );
//prepend it to colModel
this.grid.colModel.config.unshift( this.grid.selModel );
//reconfig the colModel
this.grid.colModel.setConfig( this.grid.colModel.config );
...
Similar Threads
-
initialize component with configs
By wiulma in forum Ext GWT: DiscussionReplies: 1Last Post: 14 May 2010, 1:19 AM -
TableLayout configs
By taiti in forum Ext 2.x: Help & DiscussionReplies: 18Last Post: 21 May 2008, 6:28 AM -
Why no access to parent configs?!
By steve.neill in forum Ext 1.x: Help & DiscussionReplies: 5Last Post: 25 Sep 2007, 12:26 PM


Reply With Quote