I have a kendoui grid with a custom popup for editing.
In this popup I have an input which is bound to a value of the grid:
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() });
You need simulate change event. Try this code:
$('#test').val("testvalue").change();