Threaded View
-
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()); } });



Reply With Quote