在Ext JS中定位组件

时间:2013-08-01 18:30:12

标签: button extjs components panel

这就是我所拥有的:

enter image description here

这就是我想要的:

enter image description here

以下是一些代码:

                        { 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' }

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

您应该使用FieldContainer将条件框和+按钮与hbox分组:

{
    xtype: 'fieldcontainer',
    fieldLabel: 'Criteria 3',
    layout: 'hbox',
    items: [
        { xtype: 'textfield', id: 'criteria_3_input' },
        { xtype: 'button', text: '+', id: 'add_criteria' }
    ]
}