or
@(Html.Kendo().Grid<CourseTypeViewModel>() .Name("MyCourseTypesGrid") .Editable(e => e.Mode(GridEditMode.InLine)) .ToolBar(toolbar => toolbar.Create().Text("New Course")) .Columns(columns => { columns.Bound(o => o.Title); columns.Bound(c => c.IsActive).Width(60); columns.Bound(c => c.DotCourse).Width(60); columns.Bound(c => c.RenewalInterval).ClientTemplate("#=RenewalInterval# (#=TimeFrame#)").Width(60); columns.Bound(c => c.TimeFrame).Width(80); columns.Command(command => { command.Edit(); command.Destroy(); }).Width(200); }).Sortable().Pageable().Groupable() .DataSource(datasource => datasource .Ajax() .Model(p => p.Id(m => m.Id)) .Create(create => create.Action("InsertCourseType", "Admin")) .Read(read => read.Action("CourseTypesGridData", "Admin")) .Update(update => update.Action( "UpdateCourseType", "Admin")) .Destroy(delete => delete.Action("DeleteCourseType", "Admin"))))Kendo().Grid
...
.DataSource(datasource => datasource .Ajax() .Model(m => m.Id(p=> p.Id)) .Read(read => read.Action("ClassificationTypesGridData", "Admin"))I'm thinking this has to do with the fact that I started with an existing ul/li structure as it doesn't appear to happen on the demos.
If I'm incorrect here, what is the resolution?
JB