コンボボックスを作成し、保存する配列をアタッチしました。私が欲しかったのは、リストから選択したり、カスタムテキストを入力したりできることです。forceSelection = false で実現できるものを検索しました。そのドキュメントを読んだところ、forceSelection がデフォルトで false であり、sencha Architect を使用しているため、明示的に構成を設定できないことがわかりました。以下は、私が行った設定です。しかし、タブを押すか、入力したテキストをコンボボックスに入力するとすぐに存在しなくなります。
{
xtype: 'fieldcontainer',
id: 'internetmessager',
autoDestroy: false,
layout: {
align: 'stretch',
type: 'hbox'
},
items: [
{
xtype: 'combobox',
flex: 1,
margin: '0 10 0 0',
name: 'label',
autoSelect: false,
queryMode: 'local',
store: [
'Home',
'Work',
'Personal'
],
typeAhead: true
},
{
xtype: 'textfield',
flex: 2,
name: 'value',
emptyText: 'IM'
}
]
}
ありがとう、アリ・アッバス