Ext version tested:

Uncaught TypeError: undefined is not a function ext-all-debug.js:154696

onValueChange ( define in Ext.grid.filters.filter.Base ):



Code:




onValueChange: function (field, e) {


var me = this;




if (e.getKey() === e.RETURN && field.isValid()) {
me.menu.hide();
return;
}




me.task.delay(me.updateBuffer, null, null, [me.getValue(field)]);
},.....

Wrong attribute e.

This function (onValueChange) call on checkchange event in CheckMenu:

See API Doc:

http://ift.tt/1xI8FGn

checkchange( this, checked, eOpts )...

Here 2 argument checked

- boolean check state ( Not Event object )


I Fix thix problem:



Code:



Ext.define('Overrides.grid.filters.filter.List', {
override: 'Ext.grid.filters.filter.List',
onValueChange: function (field, e) {
var me = this;
me.task.delay(me.updateBuffer, null, null, [me.getValue(field)]);
}

});