Take a look at the MVVM example here:
How can I get the MVVM value to update on the spin event (clicking the up or down arrows)
Here is what I tried:
In the spin event, I tried to do
$("#ntb").getKendoNumericTextBox().trigger("change");
That worked but had weird side effects.
If there are enough elements on the DOM, the spin event will keep firing.
Another way to reproduce this is to take the code from here (jsbin)
Insert it in a HTML file, load it in Chrome or FF and then insert a break point at this line:
$("#ntb").getKendoNumericTextBox().trigger("change");
Keep hitting continue and you will see the breakpoint get hit time after time.
In firefox, if my DOM is large enough, I get a repro without a breakpoint.