所以我在这里有几个组件的面板:
{ xtype: 'panel', padding: 5, height: 500, width: '35%',
//Query Builder
items: [
{ xtype: 'combobox', padding: 5, fieldLabel: 'Search In', store: states, displayField: 'field1' },
{ xtype: 'button', text: 'Add', itemId: 'add_criteria' },
{ xtype: 'combobox', padding: 5, region: 'east', fieldLabel: 'Criteria 2', itemId: 'combo2', hidden: true },
...
我设置了一个控制器来侦听要单击的“添加”按钮。我想要做的是每次用户单击按钮时添加一个组合框(也许还有一个文本字段?)。组合框将被添加到垂直向下的面板中。
有任何想法吗?