or
<script type="text/x-kendo-template" id="vehicletemplate"> <div> <p>Dummy Placeholder</p> </div></script><div class="col-md-4"> @(Html.Kendo().ListView<Object>().Name("VehicleList") .ClientTemplateId("vehicletemplate") .TagName("div") .DataSource(ds => ds .ServerOperation(false) .Read(read => read .Url("/api/vehicles").Type(HttpVerbs.Get) ) ) ) @(Html.Kendo().DropDownList() .Name("ddList") .DataTextField("Registration") .DataSource(ds => ds .Read(read => read .Url("/api/vehicles").Type(HttpVerbs.Get) ) ) )</div>@(Html.Kendo().Splitter() .Name("vertical") .Orientation(SplitterOrientation.Vertical) .Panes(verticalPanes => { verticalPanes.Add() .Size("100px") .HtmlAttributes(new { id = "top-pane" }) .Collapsible(false) .Content( @Html.RenderPartial("HeaderPartialView"); );<script type="text/x-kendo-tmpl" id="paperlist-template"> ... <div>${kendo.toString(PublicationDate, "dd MMMM yyyy")}</div> ...</script>@(Html.Kendo().ListView(Model.Papers)...@(Html.Kendo().ListView<IEnumerable<PaperListItem>>()...