Есть два файла: StringFilter.js, содержит код:
init : function (config) {
Ext.applyIf(config, {
enableKeyEvents: true,
labelCls: 'ux-rangemenu-icon ' + this.iconCls,
hideEmptyLabel: false,
labelSeparator: '',
labelWidth: 29,
listeners: {
scope: this,
keyup: this.onInputKeyUp,
el: {
click: function(e) {
e.stopPropagation();
}
}
}
});
this.inputItem = Ext.create('Ext.form.field.Text', config);
this.menu.add(this.inputItem);
this.menu.showSeparator = false;
this.updateTask = Ext.create('Ext.util.DelayedTask', this.fireUpdate, this);
},
и ListFilter.js, содержит код:
init : function (config) {
this.dt = Ext.create('Ext.util.DelayedTask', this.fireUpdate, this);
},
.
Может над ними поколдовать? На верном ли я пути?