This is a migrated thread and some comments may be shown as answers.

radSplitterBar not expand after collpasing Master/Child page

1 Answer 28 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Kamal
Top achievements
Rank 1
Kamal asked on 08 Jun 2010, 07:06 PM
I have just started to use radSplitter control. I am using Master/child page with all rad controls in the master page.

When the page first loads I like to get an expanded left side zone with embeded sliding panels, this is what I get so far. I can collpase the splitbar. Once it's collpased I cannot expand it anymore. Am I missing something here?

Please let me know, if you need additional information.

Thanks,
Kamal

here is the code:

<telerik:RadSplitter ID="RadSplitter1" runat="server" Skin="Black" Width="200" Height="100%" 
        VisibleDuringInit="true" ResizeMode="EndPane">  
   <telerik:RadPane ID="LeftPane" runat="server" Scrolling="None" Collapsed="false">  
            <telerik:RadSlidingZone ID="LeftVerticalZone" runat="server" Width="22px" ClickToOpen="true">  
                <telerik:RadSlidingPane ID="RadSlidingPane1" Title="Groups" runat="server" Width="200" 
                    EnableDock="true">  
                    <telerik:RadTreeView ID="rtvGroups" runat="server" EnableEmbeddedSkins="False" Skin="Black" 
                        SingleExpandPath="True" OnNodeClick="rtvGroups_NodeClick">  
                        <Nodes> 
                            <telerik:RadTreeNode runat="server" Text="Groups">  
                                <Nodes> 
                                    <telerik:RadTreeNode runat="server" Text="GroupX" Value="1">  
                                    </telerik:RadTreeNode> 
                                </Nodes> 
                            </telerik:RadTreeNode> 
                        </Nodes> 
                        <CollapseAnimation Type="OutQuint" Duration="100"></CollapseAnimation> 
                        <ExpandAnimation Duration="100"></ExpandAnimation> 
                    </telerik:RadTreeView> 
                </telerik:RadSlidingPane> 
                <telerik:RadSlidingPane ID="RadSlidingPane2" Title="Login" runat="server" Width="180" 
                    EnableDock="false">  
                    <asp:Login ID="Login1" runat="server" BackColor="#F7F6F3" BorderColor="#E6E2D8" BorderPadding="4" 
                        BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em" 
                        ForeColor="#333333">  
                        <TextBoxStyle BorderStyle="None" Font-Size="0.8em" /> 
                        <LoginButtonStyle BackColor="#FFFBFF" BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1px" 
                            Font-Names="Verdana" Font-Size="0.8em" ForeColor="#284775" /> 
                        <InstructionTextStyle Font-Italic="True" ForeColor="Black" /> 
                        <TitleTextStyle BackColor="#5D7B9D" Font-Bold="True" Font-Size="0.9em" ForeColor="White" /> 
                    </asp:Login> 
                </telerik:RadSlidingPane> 
            </telerik:RadSlidingZone> 
        </telerik:RadPane> 
        <telerik:RadSplitBar ID="RadSplitbar1" runat="server" CollapseMode="Forward" /> 
        <telerik:RadPane ID="MainPane" runat="server" Width="1024">  
            <asp:ContentPlaceHolder ID="MainContent" runat="server">  
            </asp:ContentPlaceHolder> 
        </telerik:RadPane> 
</telerik:RadSplitter> 
 

1 Answer, 1 is accepted

Sort by
0
Kamal
Top achievements
Rank 1
answered on 09 Jun 2010, 03:35 PM
Issue was resolved.
Thanks anyways
Tags
Splitter
Asked by
Kamal
Top achievements
Rank 1
Answers by
Kamal
Top achievements
Rank 1
Share this question
or