-
20 Dec 2012 6:50 AM #1
Unanswered: RowExpander doesn't shown -> namespace is undefined
Unanswered: RowExpander doesn't shown -> namespace is undefined
Hello, I've got an error by using the RowExpander (ExtJS 4.1.1). With the following code I get an error:
because the namespace is undefined. Is there an error in my code? Without the rowexpander I get no error and the grid works.Code:/** * Supports namespace rewriting * @private */ parseNamespace: function(namespace) { ....
Code:Ext.application({ name: 'test', launch: function () { Ext.define('myModel', { extend: 'Ext.data.Model', fields: [ { name: 'name1', type: 'string' }, { name: 'name2', type: 'string' } ] }); var myStore = Ext.create('Ext.data.Store', { model: 'myModel', data: [ { name1: 'Test Name 1', name2: 'Test Name 2' } ] }); var myGrid = Ext.create('Ext.grid.GridPanel', { title: 'Test Grid', id: 'grid', store: myStore, columns: [ { header: 'Name', dataIndex: 'name1' } ], plugins: [{ ptype: 'rowexpander', rowBodyTpl: new Ext.XTemplate( '<p><b>Title:</b> {name1}</p>', '<p>{name2}</p>' ) }], renderTo: Ext.getBody() }); } });
-
20 Dec 2012 7:20 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,710
- Vote Rating
- 436
- Answers
- 3113
Please stop posting the same thing over and over and over. Read the message after you submit a new thread/post, it would have told you that your thread(s) were put under moderation and they will have to be approved.
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.


Reply With Quote