SecondPage master

来源:互联网 发布:家庭健身器材 知乎 编辑:程序博客网 时间:2024/05/29 02:28
 Ext.define('app.view.AppNewStartWindow',{
    extend : 'Ext.window.Window',
    alias  : 'widget.appNewStartWindow',
    title  : '创建应用',
    height : 450,
    width: 430,
    autoShow : false,
    layout : 'fit',
    
    initComponent : function(){
         this.items=[{
            xtype : 'panel',
            layout : 'border',
            items : [{
                xtype : 'form',
                region: 'north',
                layout : 'hbox',
                items :[{
                    xtype : 'textfield',
                    fieldLabel: 'bindmiddleware'
                },{
                    xtype : 'textfield'
                }]
                
        },{
                    xtype : 'form',
                    region : 'center',
                    height : 200,
                    items :[{
                        xtype :'textfield'
                    },{
                        xtype : 'grid',
                        title: 'Simpsons',
                        store: {
                             fields:['name', 'email'],
                                data:[
                                { 'name': 'Lisa',  "email":"lisa@simpsons.com"},
                                { 'name': 'Bart',  "email":"bart@simpsons.com"},
                                { 'name': 'Homer', "email":"home@simpsons.com"},
                                { 'name': 'Marge', "email":"marge@simpsons.com", }
                            ]
                        },
                        columns: [
                            { header: 'Name',  dataIndex: 'name' },
                            { header: 'Email', dataIndex: 'email', flex: 1 }
                        ],
                        height: 340
                    }]
                },{
                    xtype :'toolbar',
                    region : 'south',
                    items : [{
                        xtype : 'button',
                        text : 'next',
                        action : 'next'
                    }]
                    }]
         }];
        
        this.callParent(arguments);
    }
 })
0 0
原创粉丝点击