私はコンボボックスを持っていて、Extjs 4 でこのコンボボックスの変更時に動的なテキストフィールドを作成したいと思っています。私は Extjs の Mvc 構造に従っています。下はマイコンボ
{
xtype : 'combo',
store : 'product.CategoryComboBox',
name: 'category',
id:'category',
displayField: 'name',
valueField: 'idProductCategory',
multiSelect : false,
fieldLabel: 'Category',
allowBlank: false,
allowQueryAll : false,
forceSelection : true,
typeAhead: true,
triggerAction: 'all',
delimiter : ',',
width: 300,
queryMode:'local',
listeners:{select:{fn:function(combo, value) {}
}