I'm using a Telerik MVC Splitter like this:
@(Html.Telerik().Splitter().Name("MainSplitter") _
.Orientation(SplitterOrientation.Horizontal) _
.HtmlAttributes( New With { .style = "height: 100%;" }) _
.Panes(Sub(p)
p.Add().Collapsible(True).Size("15%").Content(Html.Partial("Menu").ToHtmlString)
p.Add().Content(RenderBody().ToHtmlString)
End Sub))
When i collapse the menu pane i want it to stay collapsed even when i navigate trought pages. Is it possible to maintain the state of the splitter when refreshing page or when the user navigates between pages?