<inputid="numerictextbox"/><script>$("#numerictextbox").kendoNumericTextBox({change:function(){var value =this.value();/* The result can be observed in the DevTools(F12) console of the browser. */console.log(value);//value is the selected date in the numerictextbox}});</script>
<inputid="numerictextbox"/><script>$("#numerictextbox").kendoNumericTextBox();var numerictextbox =$("#numerictextbox").data("kendoNumericTextBox");
numerictextbox.bind("change",function(){var value =this.value();/* The result can be observed in the DevTools(F12) console of the browser. */console.log(value);//value is the selected date in the numerictextbox});</script>