How to change the value of a kendo bound html input

独自空忆成欢 提交于 2019-11-28 07:22:43

问题


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:

<input type="text" class="k-input k-textbox" id="test" data-bind="value:SearchFilter">

This works fine. Click edit in the grid, change the value in the textbox and the value propagates to the grid.

But now I want to change the value of the textbox in javascript.. So I now have this:

$('#test').val("testvalue");

This indeed changes the value of the textbox, but upon save the new value isn't propagated to the grid. I guess because no change event occurs on the textbox.

How do I make this work?


回答1:


You need simulate change event. Try this code:

$('#test').val("testvalue").change();



回答2:


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() });


来源:https://stackoverflow.com/questions/15954977/how-to-change-the-value-of-a-kendo-bound-html-input

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!