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

Docking positions

1 Answer 53 Views
Docking
This is a migrated thread and some comments may be shown as answers.
Todd Millett
Top achievements
Rank 1
Todd Millett asked on 16 Mar 2011, 07:01 AM
I had some issues with the docking layout of the RadDocking control. If you look at the attached image (default.jpg) I have a left docking pane, a top docking pane, a right docking pane. When i pin the top docking pane, it takes up the entire top area and pins itself as shown in the second image (docktop.jpg). What i want is that when the user docks top, it should get docked on top at its own area as shown in the image expected.jpg and the left and right panes should not be affected. Following is my code : 

<Grid x:Name="LayoutRoot">
        <telerik:RadDocking Width="850" Height="500">
            <telerik:RadDocking.DocumentHost>
                <telerik:RadSplitContainer>
                    <telerik:RadPaneGroup>
                        <telerik:RadPane Header="Description">
                            <TextBlock TextWrapping="Wrap" Text="On the Documents tab above press Ctrl + Mouse Left button to display the Popup Menu. You can use the same combination on every tab."/>
                        </telerik:RadPane>
                        <telerik:RadPane Header="NonDraggable" CanFloat="False">
                            <TextBlock TextWrapping="Wrap" Text="This pane cannot be dragged, because it has its property CanFloat set 'False'."/>
                        </telerik:RadPane>
                    </telerik:RadPaneGroup>
                </telerik:RadSplitContainer>
            </telerik:RadDocking.DocumentHost>


            <telerik:RadSplitContainer InitialPosition="DockedLeft">
                <telerik:RadPaneGroup>
                    <telerik:RadPane Header="Left Dock Pane"/>
                </telerik:RadPaneGroup>
            </telerik:RadSplitContainer>


            <telerik:RadSplitContainer InitialPosition="DockedRight">
                <telerik:RadPaneGroup>
                    <telerik:RadPane Header="Right Dock Pane"/>
                </telerik:RadPaneGroup>
            </telerik:RadSplitContainer>


            
            <telerik:RadSplitContainer InitialPosition="DockedTop">
                <telerik:RadPaneGroup>
                    <telerik:RadPane Header="Dock Top Pane"/>
                </telerik:RadPaneGroup>
            </telerik:RadSplitContainer>
            
        </telerik:RadDocking>
    </Grid>

1 Answer, 1 is accepted

Sort by
0
Konstantina
Telerik team
answered on 18 Mar 2011, 01:52 PM
Hi Todd,

Thank you for contacting us.

Unfortunately, this cannot be achieved with the current implementation of the RadDocking control. Sorry for the inconvenience caused.

If you have any other question please let us know.

Regards,
Konstantina
the Telerik team
Tags
Docking
Asked by
Todd Millett
Top achievements
Rank 1
Answers by
Konstantina
Telerik team
Share this question
or