This example shows how to configure the Telerik Splitter for ASP.NET MVC to render in horizontal or vertical direction.
Use the Orientation method to set the orientation of the splitter. The method
accepts the SplitterOrientation enumeration:
SplitterOrientation.Horizontal option
<%= Html.Telerik().Splitter()
.Name("Splitter")
.Orientation(SplitterOrientation.Horizontal)
...
%>
SplitterOrientation.Vertical option
<%= Html.Telerik().Splitter()
.Name("Splitter")
.Orientation(SplitterOrientation.Vertical)
...
%>