2013-07-05 19 views

回答

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