Kendo calendar selected date event

前端 未结 1 1938
悲哀的现实
悲哀的现实 2021-01-22 20:17

Hi I\'ve a kendo calendar and a text box in my page. When I select any date on the calendar, I wanted to show that value in my textbox. (like datetime picker). Any way to get it

1条回答
  •  生来不讨喜
    2021-01-22 20:48

       var textVal =  $(this).value();
       $('#txtdate').val(textVal);
    

    0 讨论(0)
提交回复
热议问题