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

How to show Splitter Programmatically

3 Answers 59 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Vuyiswa
Top achievements
Rank 2
Vuyiswa asked on 06 Aug 2010, 09:49 AM
Good Day

When you move your mouse over the Splitter , it will appear. How can i do that on the server side.

 
<telerik:RadSplitter ID="RadSplitter1" runat="server" Height="500px"
        Skin="Forest" Width="220px">
        <telerik:RadPane ID="LeftPane" runat="server" Height="16px" Scrolling="none"
            Width="41px">
            <telerik:RadSlidingZone ID="SlidingZone1" runat="server" Width="22px">
                <telerik:RadSlidingPane ID="RadSlidingPane1" runat="server" Width="200px">
                    <telerik:RadPanelBar ID="RadPanelBar2" Runat="server" Height="100%"
                        Skin="Forest" Width="180px">
                    </telerik:RadPanelBar>
                </telerik:RadSlidingPane>
            </telerik:RadSlidingZone>
        </telerik:RadPane>
        <telerik:RadSplitBar ID="Radsplitbar1" runat="server">
        </telerik:RadSplitBar>
    </telerik:RadSplitter>


Thanks

3 Answers, 1 is accepted

Sort by
0
Vuyiswa
Top achievements
Rank 2
answered on 07 Aug 2010, 07:59 AM
I found the asnwer
SlidingZone1.ExpandedPaneId = "RadSlidingPane1";
0
Accepted
Svetlina Anati
Telerik team
answered on 10 Aug 2010, 09:30 AM
Hi Vuyiswa Maseko,

Indeed, to expand the sliding pane on the server you should use the ExpandedPaneId property, However, I recommend to always use the ClientID just in case you use an INaming Container later and modify your code as shown below:

SlidingZone1.ExpandedPaneId = RadSlidingPane1.ClientID;


Sincerely yours,
Svetlina
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Vuyiswa
Top achievements
Rank 2
answered on 10 Aug 2010, 03:23 PM
Thank you admin , i will put that in mind

Tags
Splitter
Asked by
Vuyiswa
Top achievements
Rank 2
Answers by
Vuyiswa
Top achievements
Rank 2
Svetlina Anati
Telerik team
Share this question
or