1. #11
    Sencha - Architect Dev Team aconran's Avatar
    Join Date
    Mar 2007
    Posts
    8,191
    Vote Rating
    63
    aconran is just really nice aconran is just really nice aconran is just really nice aconran is just really nice aconran is just really nice

      0  

    Default


    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

  2. #12
    Touch Premium Member
    Join Date
    Jul 2011
    Posts
    167
    Vote Rating
    1
    georgewr3 is on a distinguished road

      0  

    Default


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