{
fieldLabel: 'Tip',
name: 'SubjectType',
allowBlank: false,
xtype: 'combo',
displayField: 'name',
valueField: 'type',
typeAhead: true,
forceSelection: true,
queryMode: 'local',
store: subjectTypeStore,
listeners: {
select: function(a,selected,c){
//console.log(a);
var tets = selected[0].data.type;
console.log(tets);
//console.log(c);
}
}
},
{
name: 'SubjectID',
allowblank: false,
xtype: 'combo',
displayField: 'name',
valuefield: 'name',
typeAhead: true,
forceSelection: true,
queryMode: 'local'
}
我想要做的是根据第一个组合框中的选定项将组合框存储应用到第二个组合框。例如,如果您选择 Pokemons,那么第二个组合框应该加载 pokemonStore。您改变主意并选择 Smurfs,然后第二个组合框加载 smurfsStore。
我想学习的是如何将商店应用到现有的组合框。