We are using a NumericTextBoxFor and we want to capture a change to that field. Unfortunately though, the event fires upon initialization but not thereafter (not on change). See example below. Any help would be appreciated
<div class="inline-datafield" style="width: 400px;"> @Html.Kendo().NumericTextBoxFor( Model => Model.Interval ).Events(events => events.Change("CheckUpdateBox(this)").HtmlAttributes( new { style = "width:100px"} ).Format("{0:n0}") </div>