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

Bottom Slidding panel

1 Answer 48 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Pedro
Top achievements
Rank 1
Pedro asked on 02 Jul 2008, 09:25 AM
Hello,

I have to slidingpanels, in one horizontal splitter, I want the bottom panel to be dock in the bottom of the splitter, but he stays on the middle. This is the simple code, any one can help me?

      <rad:RadSplitter ID="RadSplitter1"
                         runat="server"
                         Width="100%"
                         Height="100%"
                         Orientation="Horizontal">
            <rad:RadPane ID="RadPane1"
                         runat="server"
                         Height="202px"
                         Scrolling="None">
                <rad:RadSlidingZone ID="RadSlidingZone1"
                                    runat="server"
                                    Height="22px"  
                                    SlideDirection="Bottom"
                                    ClickToOpen="true">
                    <rad:RadSlidingPane ID="RadSlidingPane1"
                                        runat="server"
                                        Title="Search"
                                        TabView="TextOnly">
                    </rad:RadSlidingPane>
                </rad:RadSlidingZone>
            </rad:RadPane>
            <rad:RadPane ID="RadPane2"
                         runat="server"
                         Height="22px"
                         Scrolling="None">
                <rad:RadSlidingZone ID="RadSlidingZone2"
                                    runat="server"
                                    Height="22px"
                                    SlideDirection="Top"
                                    ClickToOpen="true">
                    <rad:RadSlidingPane ID="RadSlidingPane2"
                                        runat="server"
                                        Title="Movements List"
                                        TabView="TextOnly">
                    </rad:RadSlidingPane>
                </rad:RadSlidingZone>
                         
            </rad:RadPane>
        </rad:RadSplitter>

1 Answer, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 07 Jul 2008, 11:42 AM
Hi Pedro,

I tested the provided code but unfortunately I was not able to reproduce the problem. Since I have not analyzed the issue locally I can only assume what could be its possible reason.

Please, make sure that you have used the correct <!DOCTYPE> declaration because our controls are XHTML compliant and in order to make them function correctly you should not use quirksmode.

The needed declaration is the following one:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

Also, make sure that there is no additional text between the declaration and the page's directives.

In case this does not help, please open a new support ticket and send me a sample, fully runnable reproduction project along with a detailed explanation and some screenshots of the problem. Once I receive it, I will do my best to help.

Greetings,
Svetlina
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Splitter
Asked by
Pedro
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Share this question
or