0

我在这里有工作代码:在容器内创建两个不同的面板:

Ext.application({
    requires: ['Ext.container.Viewport'],
    name: 'AM',

    appFolder: 'app',

    controllers: [
        'Users'
    ],

      launch: function() {
        Ext.create('Ext.panel.Panel', {
            renderTo: Ext.getBody(),
            width: 900,
            height: 600,
            title: 'The Panel',
            layout: { 
            type: 'hbox'

            },
            items: [
                { xtype: 'panel', padding: 5, height: 500, width: '35%' },
                { xtype: 'userlist', padding: 5, height: 500, width: '65%' },
            ],
            listeners: {
                render: function() {
                  console.log('The Panel was rendered');
                }
            }
        });
    }

我想要做的是能够将不同的组件放在左面板内(即组合框、输入框等)。我该怎么做?创建这些组件的最佳实践是什么?(一切都应该放在 app.js 中吗?)

4

1 回答 1

1

您正在寻找itemsconfig 属性。使用它作为数组来添加子组件:

{
    xtype: 'panel',
    items: [
        { xtype: 'combo' }
    ]
}

您需要查看相关文档,如果您打算大量使用 ExtJS 框架,您需要了解这些非常基本的信息:http: //docs.sencha.com/extjs/4.2.1/ #!/指南/组件

于 2013-07-22T17:54:59.970 回答