Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Docking > Rad Pane Problem
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered Rad Pane Problem

Feed from this thread
  • Sivaprakas Subramanian avatar

    Posted on Jun 8, 2010 (permalink)

    hi i am using rad pane and splitter controls
    i face weired problem
    if i click first time Rad pane with full height
    next time the height shrink
    again if i click its normal height
    again the height shrink

    how to solve this problem
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
            </telerik:RadScriptManager> 
                  
                <telerik:RadSplitter id="RadSplitter1" runat="server" height="400px" width="700px" CssClass="Telerik" ResizeMode="EndPane">  
     
                    <telerik:RadPane id="Radpane1" runat="server" Width="22px" scrolling="None" MinWidth="22">  
                        <telerik:RadSlidingZone ID="SlidingZone1"  runat="server" Width="22px" ClickToOpen="true" > 
                            <telerik:RadSlidingPane ID="Contacts"  BackColor="#99ccff" Title="Contacts" Height="400px"  runat="server" width="190px">  
                                  
                            </telerik:RadSlidingPane> 
                            <telerik:RadSlidingPane id="Calendar" title="Calendar" runat="server"  Height="400px"  width="200px">  
                                  
                                  
                            </telerik:RadSlidingPane> 
                        </telerik:RadSlidingZone> 
                    </telerik:RadPane> 
                    <telerik:RadSplitBar id="Radsplitbar3" runat="server" collapsemode="Forward" /> 
                      
                    <telerik:RadPane id="RadPane2" runat="server" scrolling="none" width="500px"<!-- 
                                Nested Horizontal splitter
                            --> 
                        <telerik:RadSplitter id="RadSplitter2" runat="server" liveresize="true" orientation="Horizontal" CssClass="Telerik">  
                            <telerik:RadPane id="topPane" runat="server" height="150px" scrolling="both"<!-- 
                                        Top Pane Content
                                    --> 
                            <table cellspacing="0" cellpadding="0">  
                            <tr> 
                                <td> 
                                Hello Siva  
                                </td></tr></table> 
                            </telerik:RadPane> 
                            <telerik:RadSplitBar id="RadSplitbar2" runat="server" CollapseMode="Forward"></telerik:RadSplitBar> 
                            <telerik:RadPane id="contentPane" runat="server" scrolling="y" contenturl="content.html"></telerik:RadPane> 
                        </telerik:RadSplitter> 
                    </telerik:RadPane> 
                </telerik:RadSplitter> 

  • Sivaprakas Subramanian avatar

    Posted on Jun 9, 2010 (permalink)

    This forum is really very hard to get help
    where can i get help for Telerik Rad Ajax Controls
    Hello Mr.Admin can u tell me

  • Svetlina Anati Svetlina Anati admin's avatar

    Posted on Jun 10, 2010 (permalink)

    Hello Sivaprakas,

    Please, note that forums are considered community resource and we do not guarantee a response here. We encourage our customers to exchange experience here but we treat the support threads with higher priority. If you want to ensure that you will get a fast and guaranteed response, please use our support system - more information about support options is available below:

    http://www.telerik.com/support/technical-support-options.aspx

    As to the question - your setup is invalid but since I do not understand what is the exact behavior you want to achieve I cannot modify it accordingly. However, I prepared for you some useful notes below:

    - Do not set any sizes to the nested splitters if they are directly nested in a RadPane  - when a RadSplitter is directly nested in a RadPane, it automatically resizes itself to occupy 100% of the parent pane. If you set width, height, fullscreenmode, the splitters will make a lot of calculations to resize themselves and this is not necessary and slows down the performance without any benefit.

    - when you have a vertical RadSplitter, do not set the Height of the child RadPanes (the same for a horizontal splitter and width) due to the above explained performance consideration

    - the sum of the widths of all panes in a vertical splitter should be equal to the width of the splitter, similar - for horizontal splitter and height

    I also recommend to examine our demos and online help in more details to get a better  understanding on how to configure the RadSplitter control:

    http://demos.telerik.com/aspnet-ajax/splitter/examples/overview/defaultcs.aspx
    http://www.telerik.com/help/aspnet-ajax/splitteroverview.html

    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.

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Docking > Rad Pane Problem