-
11 Apr 2012 10:29 AM #11
A sensible thing for us to do would be to set the autoShow configuration to true when an Ext.Window is marked as the initialView.
Aaron Conran
@aconran
Sencha Architect Development Team
-
11 Apr 2012 10:43 AM #12
I see. I think the previous version (1.2.2) added a show line by default. Thanks for pointing that out.
Code:Ext.Loader.setConfig({ enabled: true }); Ext.application({ name: 'MyApp', launch: function() { Ext.QuickTips.init(); var cmp1 = Ext.create('MyApp.view.MyWindow', { renderTo: Ext.getBody() }); cmp1.show(); } });


Reply With Quote