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

add sliding panes in left and buttom sides

3 Answers 49 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
NIRAKAR
Top achievements
Rank 1
NIRAKAR asked on 06 Feb 2009, 08:54 AM
hi


i want to add sliding panes into left and bottom sides of the splitter.

can i add in this way.

thanx.

3 Answers, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 09 Feb 2009, 08:13 AM
Hi NIRAKAR,
I am not quite sure what you are trying to achieve. In case you can send me a screenshot of the expected result, I will be able to provide you with a concrete answer whether it is possible or not with the RadSlidingPanes.

In the meantime, please refer to the SlidingPanes section in our online examples for an overview of the functionality. I believe you will be able to find the answer to your question there.

Sincerely yours,
Tsvetie
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
NIRAKAR
Top achievements
Rank 1
answered on 10 Feb 2009, 04:56 AM
Hi Tsvetie,

According to your link of your online example, Sliding Panes are in left, right and top sides. I want to add some sliding panes in left and button side only, not in right and top side.

 Can you modify from your existing example.

thanx.
Nirakar.
0
Tsvetie
Telerik team
answered on 13 Feb 2009, 08:59 AM
Hello,
In order to have RadSlidingPanes on the left and in the bottom, you have to define 2 RadSplitters with different orientations. The Orientation property defines how the RadPanes will be ordered in the RadSplitter and which two SlideDirections you can use for the RadSlidingZone.

For example:
<telerik:RadSplitter ID="RadSplitter1" runat="server" Orientation="Horizontal"
    <telerik:RadPane ID="RadPane1" runat="server" Scrolling="None"
        <telerik:RadSplitter ID="RadSplitter2" runat="server"
            <telerik:RadPane ID="RadPane3" runat="server" Width="22px" Scrolling="None"
                <telerik:RadSlidingZone ID="RadSlidingZone1" runat="server"
                    <telerik:RadSlidingPane ID="RadSlidingPane1" runat="server" Title="Pane 1"
                    </telerik:RadSlidingPane> 
                    <telerik:RadSlidingPane ID="RadSlidingPane2" runat="server" Title="Pane 2"
                    </telerik:RadSlidingPane> 
                </telerik:RadSlidingZone> 
            </telerik:RadPane> 
            <telerik:RadPane ID="RadPane4" runat="server"
            </telerik:RadPane> 
        </telerik:RadSplitter> 
    </telerik:RadPane> 
    <telerik:RadPane ID="RadPane2" runat="server" Height="22px" Scrolling="None"
        <telerik:RadSlidingZone ID="RadSlidingZone2" runat="server" SlideDirection="Top"
            <telerik:RadSlidingPane ID="RadSlidingPane3" runat="server" Title="Pane 3"
            </telerik:RadSlidingPane> 
            <telerik:RadSlidingPane ID="RadSlidingPane4" runat="server" Title="Pane 4"
            </telerik:RadSlidingPane> 
        </telerik:RadSlidingZone> 
    </telerik:RadPane> 
</telerik:RadSplitter> 


Kind regards,
Tsvetie
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Splitter
Asked by
NIRAKAR
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
NIRAKAR
Top achievements
Rank 1
Share this question
or