如何在 extjs4.1 中水平对齐组合框
Posted
技术标签:
【中文标题】如何在 extjs4.1 中水平对齐组合框【英文标题】:How to align combo box horizontal in extjs4.1 【发布时间】:2013-07-05 13:45:37 【问题描述】:谁能告诉
例如
组合1 组合2 组合3
combo4combo5combo6
谢谢
【问题讨论】:
【参考方案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
【讨论】:
以上是关于如何在 extjs4.1 中水平对齐组合框的主要内容,如果未能解决你的问题,请参考以下文章