Hi I have grid with inline editing when i want to click cell to update i can see my timepicker and i can select value but when i pass next cell value is disappearing and not select or changing anything
How can i solve it?
@( Html.Kendo().Grid<MockUpForeNet.Controllers.CardDetailController.Days>() .Name("timegrid") .DataSource(d => d.Ajax().Read("TimeGridBinding", "CardDetail", new { rule = rule }).Update("UpdateTime","CardDetail").Model(keys => { keys.Id(k => k.DayId); keys.Field(c => c.DayName).Editable(false); keys.Field(c => c.DayId).Editable(false); keys.Field("TimeStart", typeof(string)).Editable(true); keys.Field("TimeEnd", typeof(string)).Editable(true); }).PageSize(7)) .Columns(c => { c.Bound(p => p.DayId).Width(100).Title(" ").ClientTemplate("#= chk2(data) #").Sortable(false); c.Bound(e => e.DayName).Width(200).Title("Day"); c.Bound(e => e.TimeStart).Width(200).Title("Start Time").EditorTemplateName("StartTimeEditor"); c.Bound(e => e.TimeEnd).Width(200).Title("End Time").EditorTemplateName("EndTimeEditor"); }) .ToolBar(commands => { commands.Save().SaveText(" ").CancelText(" "); }) .Editable(editing => editing.Mode(Kendo.Mvc.UI.GridEditMode.InCell)) .Sortable() .ColumnMenu() )