我正在使用ExtJS 3.2.1版本。
我们可以在ExtJS中为listerners
提供multiselect
吗?
items: [{
fieldLabel: 'Vehicle List',
xtype: 'multiselect',
autoScroll: true,
name: 'vehicleSimNo',
id: 'multi_vehicles',
displayField: 'vehno',
valueField: 'vehno',
valueField: 'simno',
store: store,
listeners: {
'select': function() {
alert("Entered!!");
//Ext.getCmp('man_dispatch_win').getform().findfield('vehicleSimNo1').enable();
}
}
}]
在这里,我没有得到警觉。 xtype: 'multiselect'
还有其他选择吗?
请给我指导。
答案 0 :(得分:1)
Ext.ux.form.MultiSelect
可用。我们没有针对multiselect的select事件,而是我们有更改事件。
供参考: http://docs.sencha.com/extjs/4.2.1/#!/api/Ext.ux.form.MultiSelect