Is there a way to override the default behavior of the CollapseMode of a RadSplitBar?
Instead of collapsing to the outside boundary of the splitter where it lives, I want to set it to a particular size (and display a graphic as the content).
In my example, I have a splitter with a splitbar whose collapsemode is forward. When I click on button to collapse the bar, I want it to collapse to say 20px and even better to display a custom graphic (maybe a bar that says something like "Navigation Pane" rotated counterclockwise.)
Instead of collapsing to the outside boundary of the splitter where it lives, I want to set it to a particular size (and display a graphic as the content).
In my example, I have a splitter with a splitbar whose collapsemode is forward. When I click on button to collapse the bar, I want it to collapse to say 20px and even better to display a custom graphic (maybe a bar that says something like "Navigation Pane" rotated counterclockwise.)
<telerik:RadSplitter ID="MainSplitter" runat="server" Height="100%" Width="100%" HeightOffset="60"> | |
<telerik:RadPane ID="NavigationPane" runat="server" Width="200px" MaxWidth="200"> | |
Navigation Goes Here! | |
</telerik:RadPane> | |
<telerik:RadSplitBar ID="NavigationContentSplitBar" runat="server" CollapseMode="Forward" /> | |
<telerik:RadPane ID="RadPane1" runat="server"> |
|
<asp:ContentPlaceHolder ID="mainContent" runat="server"></asp:ContentPlaceHolder> | |
</telerik:RadPane> | |
</telerik:RadSplitter> |