What is the correct way to use RenderPartial in a splitter?
@(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");
);