I have an odd behavior with the splitter. I'd like to know how to get this to work. For some reason the Label is aligned to the left off the page. How do I get around this behavior?
Splitter Definition:
@(Html.Kendo().Splitter() .Name("splitter") .HtmlAttributes(new { style = "height: 150px;" }) .Panes(panes => { panes.Add() .HtmlAttributes(new { id = "top_pane" }) .Collapsible(true) .Content(@<p>@Html.Partial("_SplitterWorkPanel1")</p>); panes.Add() .HtmlAttributes(new { id = "bottom_pane" }) .Collapsible(true) .Content(@<p>@Html.Partial("_SplitterWorkPanel2")</p>); }))
Partial Views (both are the same):
@{ Layout = null; }<div class="row"> <label class="col-form-label">Date Range</label></div><div class="row" style="margin-top: 5px;"> <label class="col-form-label">Status</label></div>