How to change the value of a kendo bound html input

后端 未结 2 2007
醉梦人生
醉梦人生 2020-12-20 14:25

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:



        
2条回答
  •  無奈伤痛
    2020-12-20 15:21

    You need simulate change event. Try this code:

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

提交回复
热议问题