This question is locked. New answers and comments are not allowed.
Hello, I am looking at the following http://www.telerik.com/help/aspnet-mvc/telerik-ui-components-grid-editing-ajax-editing.html<%= Html.Telerik().Grid(Model) .Name("Grid") .Columns(columns => { //Bound columns columns.Bound(c => c.ContactName); columns.Bound(c => c.Country); columns.Bound(c => c.BirthDay); //Command column with two commands columns.Command(commands => commands .Edit() .Delete()) }) %>But when I write this code, it doesn't recognize the second command, the .Delete() - it seems I can only define Edit or Delete, once right after the second commands reference. After the . after the first Edit() command, I have the following options: ButtonType(), Equals(), GetHashCode(), GetType(), HtmlAttributes(), ImageHtmlAttributes() and ToString() It says "The editing feature of Telerik Grid for ASP.NET MVC is available only for ASP.NET MVC 2.0. Make sure you are using the right version of Telerik.Web.Mvc.Dll." How do I do this ? What else could be wrong ?