This question is locked. New answers and comments are not allowed.
We are using a number of Telerik MVC NumericTextBox controls within our solution. On a particular page we have needed to use the JQuery change event handler for the numeric text box's input field rather than the OnChange event provided by Telerik. The reason for this is that each row in our table has repeated text boxes, the change events are registered and maintained using a custom jquery plugin. We have bound the events as per the example on the forum post http://www.telerik.com/community/forums/aspnet-mvc/numericinput/subscribing-to-onchange-in-javascript.aspx which works in Firefox and Chrome, however, in IE the even never fires.
Example page is as follows (this works in Firefox but not IE - any assistance would be greatly appreciated)
Telerik MVC v2011.1.315
Example page is as follows (this works in Firefox but not IE - any assistance would be greatly appreciated)
Telerik MVC v2011.1.315
@(Html.Telerik().NumericTextBoxFor(m => m.Number))@{Html.Telerik() .ScriptRegistrar() .OnDocumentReady( @<text> $('#Number').bind('change', function() { alert('number on change event fired'); }); </text>);}