如何在extjs4.1中对齐组合框水平

时间:2013-07-05 13:45:38

标签: extjs extjs4.1 extjs4.2

任何人都可以告诉如何在extjs4.1中对齐组合框水平

e.g

combo1 combo2 combo3

combo4 combo5 combo6

由于

1 个答案:

答案 0 :(得分:1)

您可以使用Hbox布局来实现此目的:

Ext.create('Ext.form.Panel', {
    items: [{
        xtype: 'container',
        layout: 'hbox',
        defaults: {
            flex: 1
        },
        items: [{
            xtype: 'combobox'
        }, {
            xtype: 'combobox'
        }, {
            xtype: 'combobox'
        }]
    }, {
        xtype: 'container',
        layout: 'hbox',
        defaults: {
            flex: 1
        },
        items: [{
            xtype: 'combobox'
        }, {
            xtype: 'combobox'
        }, {
            xtype: 'combobox'
        }]
    }],
    renderTo: Ext.getBody()
});

http://plnkr.co/edit/N0OxrdRJMnpBXMVsRs1p?p=preview