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

Problem with setting size using RadSplitterr

1 Answer 38 Views
Slider
This is a migrated thread and some comments may be shown as answers.
Bhuvan
Top achievements
Rank 1
Bhuvan asked on 28 Dec 2010, 10:21 AM
Hi Team,

Actuaaly I used a code
  <telerik:RadSplitter ID="RadSplitter2" runat="server" Height="22px" 
                                        Orientation="Horizontal" Width="405px">
                                    
<telerik:RadPane ID="RadPane2" runat="server" Height="22px" Scrolling="none" 
                                            Width="100px">
                                            <telerik:RadSlidingZone ID="RadSlidingZone2" runat="server" Height="22px" 
                                                SlideDirection="Top">
                                                <telerik:RadSlidingPane ID="RadSlidingPane3" runat="server" 
                                                    BackColor="ButtonFace" Title="Reply">                                                                
                                                            <asp:Panel ID="Reply_Panel" runat="server">
                                                                <telerik:RadTextBox ID="RadTextBox1" runat="server" Height="80" Width="390" 
                                                                    Skin="Forest" TextMode="MultiLine">                                                                </telerik:RadTextBox><br />                                                                                                                      
                                                                <asp:Button ID="btn_submit1" runat="server" Text="submit" />
                                                            </asp:Panel>                                                    
                                                </telerik:RadSlidingPane>
                                            </telerik:RadSlidingZone>
                                        </telerik:RadPane>
                                    </telerik:RadSplitter>     

what i want is i want o increase the splitter and Radpane size when the sliding pan is docked and decrease the size when it is undocked is it possible?
 If yes how? 

1 Answer, 1 is accepted

Sort by
0
Accepted
Tsvetie
Telerik team
answered on 28 Dec 2010, 11:39 AM
Hi Bhuvan,
The result you describe is by design. However, your splitter definition is not correct in case you intend to use the dock functionality of the sliding pane. In short, when the sliding pane docks, it re-sizes its parent pane to its size, so that the whole docked sliding pane is visible. However, in this case, the parent pane cannot be re-sized, because it is the only pane in the splitter, and as a result, the sliding pane cannot be docked. That is why, all you need to do, in order to get the result you describe, is add a second pane to the splitter.

Regards,
Tsvetie
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Slider
Asked by
Bhuvan
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
Share this question
or