This question is locked. New answers and comments are not allowed.
Basically I am trying to take the ClientExample, but rather than have hardcoded HTML in there I want to use the Html.ActionLink command, but am not sure how to reference the row data at that point to get the CustomerId for the routevalues.
http://demos.telerik.com/aspnet-mvc/grid/templatesclientside
<%= Html.Telerik().Grid<Customer>() .Name("Grid") .Columns(columns => { columns.Bound(c => c.CustomerID) .ClientTemplate(Html.ActionLink("Customer","Edit", new {CustomerId = WanttoGetCustomerIdHere}).ToString()) .Title("Picture"); //omitted for brevity }%>http://demos.telerik.com/aspnet-mvc/grid/templatesclientside