Kendo grid change event fires only once per row selection
问题 In a MVC4 project, I've got a kendo grid that fires an event when a row is selected. <div id="datagrid"> @(Html.Kendo().Grid<SustIMS.Models.StretchModel>() .Name("datagrid_Stretches") .Columns(columns => { columns.Bound(s => s.StretchCode).Title(ViewBag.lblCode).Width(80); columns.Bound(s => s.StretchMediumDescription).Title(ViewBag.lblDescription); ... }) .Events(e => e.Change("onChange")) <--------- here's the event .DataSource(dataSource => dataSource .Ajax() .PageSize(15) .Read(read =>