I tried the above answer but did not work for me. Although the value had indeed changed, the view did not reflect that fact. This worked for me:
var myvar = $("#myid").data("kendoNumericTextBox");
myvar.value("newValue");
myvar.trigger("change", { value: myvar.value() });