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?~o)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
