I have a ComboBox in my page and I want to bind keypress event to my Kendo ComboBox when the cliend writes down any letter.
As I understand kendo doesn't have any keypress event on ComboBox.
I've found that kendo has something like this to bind values and functions:
kendo.data.binders.slide = kendo.data.Binder.extend({
refresh: function () {
var value = this.bindings["slide"].get();
if (value) {
$(this.element).slideDown();
} else {
$(this.element).slideUp();
}
}
});
Source: Click Here
But the problem is I can't workaround that and make it to trigger keypress event on the InputBox in the KendoComboBox control.
Remember that I'm using MVVM and I don't want to use somthing like $('k-input').keypress(...); I want to actually add something in my kendo framework by manipulating the extend method that kendo provided for us.
Thank you in advance.