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

Slider control doesn't slide once undocked

1 Answer 32 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
R N
Top achievements
Rank 1
R N asked on 24 Jul 2008, 03:36 PM

I am running into this issue which I am unable to resolve. Within an aspx page (that uses a master page), I have a slider control (Test1). The page is initially presented with Test1. But once it is undocked (Test1 moves up and hides), clicking on Test1 doesn't display it again.

Please help. I have provided the code below.
*****************************************
******************ASPX******************
*****************************************

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
    <br />
    <font class="MainPageTitleCORP">Submission Tracking</font>
    <br /><br />

<RadSplit:RadSplitter ID="RadSplitter2" runat="server" Width="1200" Height="600">

    <RadSplit:RadPane ID="MiddlePane1" runat="server" Scrolling="None">
        <RadSplit:RadSplitter ID="RadSplitter1" runat="server" Height="400" Width="700" Orientation="Vertical">
            <RadSplit:RadPane ID="RadPane1" runat="server" Height="22" Scrolling="none" Locked="true">
                <RadSplit:RadSlidingZone id="RadSlidingZone1" runat="server" SlideDirection="Bottom">
                    <RadSplit:RadSlidingPane id="RadSlidingPane1" runat="server" Height="150">

Test1
                    </RadSplit:RadSlidingPane>
                </RadSplit:RadSlidingZone>
            </RadSplit:RadPane>
Test2
            <RadSplit:RadPane ID="Grid" runat="server">
        </RadSplit:RadPane>
</RadSplit:RadSplitter>
</RadSplit:RadPane>
</RadSplit:RadSplitter>

</asp:Content>

*****************************************
****************VB CODEBEHIND*********
*****************************************

        RadSplitter1.Width = Unit.Percentage(100)
        RadSplitter1.Orientation = Telerik.WebControls.RadSplitterOrientation.Horizontal

        RadPane1.Width = Unit.Pixel(55)
        RadPane1.Style("height") = "auto"
        RadPane1.Scrolling = Telerik.WebControls.RadSplitterPaneScrolling.None

        RadSlidingZone1.ClickToOpen = True
        RadSlidingZone1.Style("height") = "auto"
        RadSlidingZone1.Width = Unit.Pixel(22)

        RadSlidingPane1.EnableResize = False
        RadSlidingPane1.Width = Unit.Pixel(252)
        RadSlidingPane1.Height = Unit.Pixel(210)
        RadSlidingPane1.Title = "Search Criteria"
        RadSlidingPane1.Scrolling = Telerik.WebControls.RadSplitterPaneScrolling.X

        RadSlidingZone1.DockedPaneId = RadSlidingPane1.ClientID

1 Answer, 1 is accepted

Sort by
0
R N
Top achievements
Rank 1
answered on 25 Jul 2008, 12:28 AM
I was able to resolve this issue by going through other threads and also going through my code.

I had only the following line in my master page HTML section:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

I needed to add the following to get the Telerik controls to work.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/tr/xhtml11/dtd/xhtml11.dtd">

Now everything is working fine. I hope this thread helps someone else who might run into a similar issue now or in the future.

Thanks!
Tags
Splitter
Asked by
R N
Top achievements
Rank 1
Answers by
R N
Top achievements
Rank 1
Share this question
or