This question is locked. New answers and comments are not allowed.
Hi,
I've a grid with Editable support and Insert command.
But I wanna use different "Template" for Editing not the same one of the Insert or create action.
How to do that ?
I've a grid with Editable support and Insert command.
But I wanna use different "Template" for Editing not the same one of the Insert or create action.
How to do that ?
<% Html.Telerik() .Grid<eFajr.Web.ViewModels.EpisodeList>() .Name("EpisodesGrid") .EnableCustomBinding(true) .ToolBar(t => t.Insert().ButtonType(GridButtonType.ImageAndText)) .Editable(editing => editing.Mode(GridEditMode.PopUp).Window(w => w.Resizable())) .DataKeys(key => key.Add(m => m.ID)) .DataBinding(dataBinding => dataBinding .Ajax() .Insert("Create", "Episodes") .Select("ReGetIndex", "Episodes") .Delete("Delete", "Episodes") .Update("Edit", "Episodes"))....................... %>