Hi,
While programming with Kendo MVC I am figuring out what a best practice is when using inline edit. Firstly I tried with a custom save with the clientside events of the grid. But performance wise I concluded that using datasource/transport is a better option. But now am I stuck with inline edit of fields with an editor template with a combobox/dropdownlist.
When I do an inline edit, another value is selected in the combobox/dropdownlist. I can see a postback is done. After the return of the save method serverside, the old value is selected. Then after a F5 the new value appears. In the serverside save method everything works fine.
.Update(update = { update.Url(Url.HttpRouteUrl(
"DefaultApi"
,
new
{ controller =
"TaskSchedulerApiV2"
, action =
"Put"
}));})
[System.Web.Mvc.HttpPut]
public
List<TaskSchedulerGridViewModel> Put(TaskSchedulerGridViewModel task)
{
//
}
Is it the return value of the put mehod or smething else?
Roel