This question is locked. New answers and comments are not allowed.
So we updated to a new build where OnRowSelected became deprecated which had a bug in it causing a stack overflow so I changed it to OnRowSelect. My issue now is that the function is no longer firing my javascript.
<% Html.Telerik() .Grid<DataViewModel>() .Name("bleh") .Columns(columns => { columns.Template(s => {%> <input type='checkbox' name='Selected' value='<%= s.ID %>' /> <%}) .ClientTemplate("<input type='checkbox' name='Selected' value='<#= ID #>' />") .Width(35).HtmlAttributes(new { style = "text-align:center" }).Title("<input type='checkbox' class='cbHeader'/>"); columns.Bound(c => c.Name).Title("Header"); }) .DataBinding(db => db.Ajax().Select("Grid", "Data")) .ClientEvents(events => events .OnRowSelect(() => { %> function(e){ alert('foo'); $.triggerCommand('showData',null, { ClassToShow: $(e.row).find(':checkbox').attr('value') }); } <% })... more code