-
6 Mar 2013 2:37 PM #1
Answered: My app runs fine before I compile it
Answered: My app runs fine before I compile it
I have a problem. To explain my problem:
and in my Test.initialize function I do this:Code:var panel = new MyApp.view.Test({foo:'bar'});
I get undefined echoed out in the console, only after I compile... Any thoughts?Code:Ext.define('MyApp.view.Test', { extend: 'Ext.Panel', initialize: function() { this.callParent(arguments); console.log(this.foo); } });
I'm using Sencha Cmd v3.0.2.288 on Windows 7 and Sencha Touch 2.1.1
-
Best Answer Posted by mitchellsimoens
In your panel definition you should really have
and also use the getFoo method instead of trying to use the foo property as there won't be one. This is the proper way to add configs.Code:Ext.define('MyApp.view.Test', { extend : 'Ext.Panel', config : { foo : null }, initialize : function () { this.callParent(arguments); console.log(this.getFoo()); } });
-
8 Mar 2013 7:30 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,641
- Vote Rating
- 434
- Answers
- 3107
In your panel definition you should really have
and also use the getFoo method instead of trying to use the foo property as there won't be one. This is the proper way to add configs.Code:Ext.define('MyApp.view.Test', { extend : 'Ext.Panel', config : { foo : null }, initialize : function () { this.callParent(arguments); console.log(this.getFoo()); } });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.
-
9 Mar 2013 12:37 AM #3
It woks!
It woks!
Thank you so much!

Little strange that my code works before it is built with Sencha Cmd? Is it not?
I will start using this way of sending config, I guess I'm laggin from Sencha 1.1.



Reply With Quote