I have upgraded MVC extensions to MVC Q3 2011(version 2011.3.1115.340). I have a telerik grid using ajax editing inline mode. Grid displays correctly but when I try to edit a row, it gives Microsoft JScript runtime error: 'i.validator' is null or not an object in telerik.grid.editing.min.js file. Below is my code:
<div id="addEditSelectionTable">
<% Html.Telerik().Grid(Model.InnerModel.SelectionsList)
.Name("Grid")
.ToolBar(commands => commands.Insert())
.DataKeys(keys => keys.Add(o => o.SelectionID))
.DataBinding(dataBinding =>
{
dataBinding.Ajax()
.Select("_SelectAjaxEditing", "Grid")
.Insert("_InsertAjaxEditing", "Grid")
.Update("_SaveAjaxEditing", "Grid")
.Delete("_DeleteAjaxEditing", "Grid");
})
.Columns(columns =>
{
columns.Bound(o => o.SelectionID);
columns.Bound(o => o.Enabled);
columns.Bound(o => o.SelectionType);
columns.Bound(o => o.Frequency);
columns.Command(commands =>
{
commands.Edit();
commands.Delete();
}).Width(200);
})
.Scrollable(s => s.Enabled(true))
.Scrollable(scrolling => scrolling.Height(500))
.Resizable(resize => resize.Columns(true))
.Reorderable(reorder => reorder.Columns(true))
.Footer(false)
.Render();
%>
</div>
My controller has GridAction :
[AcceptVerbs(HttpVerbs.Post)]
[GridAction]
public ActionResult _SaveAjaxEditing(int id)
{
var sModel = SamplesModel.GetAllSampleSelections();
return View(new GridModel(sModel.SelectionsList));
}
No clue why this might be hapening. grid works fine without editing.