我正在使用layout: 'hbox'
一个容器,它包含四个子项,如下所示
- 标签
- 具有用于消息的文本字段和 div 的 Continer
- 标签
- 具有用于消息的文本字段和 div 的容器
我希望所有这四个元素在单行中水平显示,这就是我使用 HBox 布局的原因,但它只显示前两个子项。我查找了生成的 html,发现生成了项目 3 和 4,但位置不正确。
这是以下代码的 jsfiddle 链接http://jsfiddle.net/5znVE/
Ext.create('Ext.Panel', {
renderTo: Ext.getBody(),
width: '100%',
bodyPadding: 10,
items: [{
xtype: 'container',
id: 'chkNumberCtnr',
layout: {
type: 'hbox',
align: 'stretch'
},
items: [{
xtype: 'label',
cls: 'field-label',
text: 'from Check Number',
}, {
xtype: 'container',
id: 'frmChkFldCntr',
cls: 'field-container',
items: [{
xtype: 'textfield',
id: 'fromChk'
}, {
xtype: 'container',
id: 'frmChkMessage',
cls: 'error-message',
html: '<div>This is required field</div>'
}]
}, {
xtype: 'label',
text: 'to Check Number'
},{
xtype: 'container',
id: 'toChkFldCntr',
cls: 'field-container',
items: [{
xtype: 'textfield',
id: 'toChk'
}, {
xtype: 'container',
id: 'toChkMessage',
cls: 'error-message',
html: '<div>This is required field</div>'
}]
}]
}
]
});