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

How to show the Spliter on the server side

2 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:44 AM
Good Day All

I have a Splitter Defined like this

<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>

i have a green thing on the far left part and it was a title, so i removed it and it , but now there is this portion that is still there. i have attached an image that has an example.

Thanks

2 Answers, 1 is accepted

Sort by
0
Accepted
Svetlina Anati
Telerik team
answered on 10 Aug 2010, 09:28 AM
Hi Vuyiswa Maseko,

In order to hide the Title tab of a RadSlidingPane you can use one of the following approaches:

1) Use CSS and override the default display as shown below:

.rspPaneTabContainer
{
   display: none !important;
}

2) Use javascript and reference the sliding pane and call the client method hideTab()

Regards,
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:24 PM
Thank you very much that worked.
Tags
Splitter
Asked by
Vuyiswa
Top achievements
Rank 2
Answers by
Svetlina Anati
Telerik team
Vuyiswa
Top achievements
Rank 2
Share this question
or