This question is locked. New answers and comments are not allowed.
Hello,
I using grid in EditorTemplates.
AjaxIndex work fine.

On Insert or save Post variables names changed to "EditorTemplateName.ValueName".
Example: FaqListItemGrid.ID Instead of of ID.

How can I fix it?
Thanks,
Andrey.
I using grid in EditorTemplates.
AjaxIndex work fine.
On Insert or save Post variables names changed to "EditorTemplateName.ValueName".
Example: FaqListItemGrid.ID Instead of of ID.
How can I fix it?
Thanks,
Andrey.
@model int@using Telerik.Web.Mvc.UI<br />@(Html.Telerik().Grid<Uco.Models.FaqListItem>() .Name("Grid") .DataKeys(keys => { keys.Add(r => r.ID); }) .ToolBar(commands => commands.Insert()) .DataBinding(dataBinding => { dataBinding.Ajax() .Select("_AjaxIndex", "ListItem") .Insert("_AjaxInsert", "ListItem") .Update("_AjaxSave", "ListItem") .Delete("_AjaxDelete", "ListItem"); }) .Columns(columns => { columns.Bound(r => r.ID); columns.Bound(r => r.Order); columns.Bound(r => r.Title); columns.Bound(r => r.Text); columns.Command(commands => { commands.Edit(); commands.Delete(); }).Width(210).Title("Commands"); }) .Editable(editing => editing.Mode(GridEditMode.InLine)) .Pageable() .Sortable() .Filterable() .Groupable())