Hello!
I have one questons!
I use help from
http://docs.kendoui.com/getting-started/using-kendo-with/aspnet-mvc/helpers/listview/editing
and why if I use "public ActionResult Editing_Create"
I need return
but if I use public ActionResult Editing_Update
I need return
In my project,when I use
for my Update Method...I get "ModelState.ToDataSourceResult = null", and if I use first example, I get what I need
Please help!
Give me please some explanation
And sorry for my bad English
I have one questons!
I use help from
http://docs.kendoui.com/getting-started/using-kendo-with/aspnet-mvc/helpers/listview/editing
and why if I use "public ActionResult Editing_Create"
I need return
return Json(new [] { product }.ToDataSourceResult(request, ModelState));
I need return
return Json(ModelState.ToDataSourceResult());
In my project,when I use
return Json(ModelState.ToDataSourceResult());
Please help!
Give me please some explanation
And sorry for my bad English