2つのxtypeを1つに追加する方法はありますか?つまり、1つのxtypeをテキストフィールドとして、もう1つをボタンとして使用します。ここでは、テキストフィールドの横にあるボタンのコードとその動作を示しています。しかし今、私はテキストフィールドとボタンの両方を単一で必要としています。
{
layout: "column",
anchor: "0",
items: [{
columnWidth: .5,
layout: "form",
items: {
xtype: "textfield",
name: "agent",
fieldLabel: "Representant",
anchor: "0"
}
},{
columnWidth: .5,
items: {
xtype: 'button',
text: 'Click me'
}
}]
}