在ExtJS中进行多选的监听器

时间:2013-11-08 10:06:59

标签: javascript extjs

我正在使用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'还有其他选择吗?

请给我指导。

1 个答案:

答案 0 :(得分:1)

自4.0.7起,

Ext.ux.form.MultiSelect可用。我们没有针对multiselect的select事件,而是我们有更改事件。

供参考: http://docs.sencha.com/extjs/4.2.1/#!/api/Ext.ux.form.MultiSelect