这就是我所拥有的:
这就是我想要的:
以下是一些代码:
{ xtype: 'combobox', padding: 5, fieldLabel: 'Search In', store: states, displayField: 'field1', id: 'criteria_3_drop_down', hidden: true },
{ xtype: 'textfield', padding: 5, region: 'west', fieldLabel: 'Criteria 3', id: 'criteria_3_input', hidden: true },
{ xtype: 'button', text: 'Search', margin: '0 0 5 120', padding: '0 30 0 30', itemId: 'search'},
{ xtype: 'button', text: '+', id: 'add_criteria' }
有什么想法吗?
答案 0 :(得分:1)
您应该使用FieldContainer
将条件框和+按钮与hbox
分组:
{
xtype: 'fieldcontainer',
fieldLabel: 'Criteria 3',
layout: 'hbox',
items: [
{ xtype: 'textfield', id: 'criteria_3_input' },
{ xtype: 'button', text: '+', id: 'add_criteria' }
]
}