Kendo.Mvc.UI.Fluent.SplitterBuilder
Defines the fluent interface for configuring the Splitter component.
Methods
Orientation(Kendo.Mvc.UI.SplitterOrientation)
Sets the splitter orientation.
Parameters
value Kendo.Mvc.UI.SplitterOrientation
The desired orientation.
Example (ASPX)
<%= Html.Kendo().Splitter()
.Name("Splitter")
.Orientation(SplitterOrientation.Vertical)
%>
Panes(System.Action<Kendo.Mvc.UI.Fluent.SplitterPaneFactory>)
Defines the panes in the splitter.
Parameters
configurePanes System.Action<Kendo.Mvc.UI.Fluent.SplitterPaneFactory>
The action that configures the panes.
Example (ASPX)
<%= Html.Kendo().Splitter()
.Name("Splitter")
.Panes(panes => {
panes.Add().LoadContentFrom("Navigation", "Shared");
panes.Add().LoadContentFrom("Index", "Home");
})
%>
Events(System.Action<Kendo.Mvc.UI.Fluent.SplitterEventBuilder>)
Configures the client events for the splitter.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.SplitterEventBuilder>
The action that configures the client events.
Example (ASPX)
<%= Html.Kendo().Splitter()
.Name("Splitter")
.Events(events => events
.OnLoad("onLoad")
)
%>