I have a textbox field that has a value property associated with a property in my ViewModel.
The problem is that the ViewModel is updated by default in the “changed” text field event (when the text field loses focus).
I want the ViewModel to be updated when a keypress event is executed.
I don’t want to force a “changed” event to happen every time a key is pressed, since there is some logic in this event handler and it should not be executed for every key press.
Is there a way to tell Kendo to update the ViewModel without triggering a “modified” event?
I know that I can simply modify the ViewModel manually, but I needed something more simple and automatic.
Thank you for your responses,
source share