This question is locked. New answers and comments are not allowed.
Hi,
I'm trying to figure out how to combine client template columns (ajax checkboxes) and custom ajax databinding. It seems the Grid syntax is slightly different for both scenarios and doesn't run as expected.
Whats the best recommended way to make this work?
http://demos.telerik.com/aspnet-mvc/razor/grid/checkboxesajax
http://demos.telerik.com/aspnet-mvc/razor/grid/custombinding
http://demos.telerik.com/aspnet-mvc/razor/grid/templatesclientside
I'm trying to figure out how to combine client template columns (ajax checkboxes) and custom ajax databinding. It seems the Grid syntax is slightly different for both scenarios and doesn't run as expected.
Whats the best recommended way to make this work?
http://demos.telerik.com/aspnet-mvc/razor/grid/checkboxesajax
@{ Html.Telerik().Grid(Model)
http://demos.telerik.com/aspnet-mvc/razor/grid/custombinding
@(Html.Telerik().Grid(Model)
http://demos.telerik.com/aspnet-mvc/razor/grid/templatesclientside
@(Html.Telerik().Grid<Customer>() Thanks, Alex