I am trying to attach change event handler to the instance of kendoNumercTextBox. I am able to get the instance of kendoNumercTextBox control using its ID, however Im not able to get the instance using class name
here is the code http://dojo.telerik.com/emIWa/11
NOTE
- I DO NOT want to attach event handler at the time of instantiating the control. I want to get the existing instance and then attach the event handler.
Also i am actually using Kendo ASP.NET MVC, however dojo doesn't allow me to write cshtml so i am using kendo UI for the demo purpose above. But i think end result would be same.
The NumericTextBox is created like below in cshtml@(Html.Kendo().NumericTextBoxFor(x =>x.numerictextbox).HtmlAttributes(new {@class = "MyClass"}))