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

RadDocking in RadWindow - Impossible Pin a RadPane

3 Answers 44 Views
Docking
This is a migrated thread and some comments may be shown as answers.
Olivier
Top achievements
Rank 1
Olivier asked on 20 Feb 2017, 07:39 AM

Hello

I want to use RadDocking inside a RadWindow.

I use this code :

<telerik:RadWindow x:Class="Silverlight.Test.FrmWindow1"
                   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                   xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
                   Header="Window1">   
        <telerik:RadDocking>    
            <telerik:RadDocking.DocumentHost>
                <telerik:RadSplitContainer>
                    <telerik:RadPaneGroup Padding="0">
                        <telerik:RadPane Visibility="Collapsed" CanUserClose="False">
                            <Border Background="Red" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
                                <telerik:Label Content="DocumentHost" HorizontalAlignment="Center" VerticalAlignment="Center"/>
                            </Border>
                        </telerik:RadPane>
                    </telerik:RadPaneGroup>
                </telerik:RadSplitContainer>
            </telerik:RadDocking.DocumentHost>
         
            <telerik:RadSplitContainer InitialPosition="DockedLeft" Orientation="Vertical">
                <telerik:RadPaneGroup>
                    <telerik:RadPane Header="Toolbox"/>
                </telerik:RadPaneGroup>
                <telerik:RadPaneGroup>
                    <telerik:RadPane Header="Server Explorer"/>
                </telerik:RadPaneGroup>
            </telerik:RadSplitContainer>
 
            <telerik:RadSplitContainer InitialPosition="DockedTop" Height="80">
                <telerik:RadPaneGroup >
                    <telerik:RadDocumentPane Header="Navigation" >
                        <Border Background="Aqua" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" >
                            <telerik:Label Content="DocumentHost" />
                        </Border>
                    </telerik:RadDocumentPane>
                </telerik:RadPaneGroup>
            </telerik:RadSplitContainer>
        </telerik:RadDocking>
</telerik:RadWindow>

 

Everything work except Pin/Unpin RadPane. Icon is visible but click has not effect.

Is a limitation or I miss something ? (this code work in a UserControl)

Thank in advance for your help.

Arnaud.

3 Answers, 1 is accepted

Sort by
0
Olivier
Top achievements
Rank 1
answered on 20 Feb 2017, 07:40 AM

Sorry I miss :

I use version Q1 2016 and Windows8 Theme

0
Nasko
Telerik team
answered on 22 Feb 2017, 09:29 AM
Hi Arnoud,

We have checked the provided code-snippet with the version you are currently using and it seems everything is working as expected. Please, check the attached sample that we have used for our investigation and let us know if we didn't miss something. It will be of great help if you modify the sample in order to reproduce the issue and send it back to us - thus we could be able to continue our investigation and provide you with a prompt solution.

We are looking forward to hearing from you.

Regards,
Nasko
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Olivier
Top achievements
Rank 1
answered on 28 Feb 2017, 08:42 AM

Hello Nasko

Thanks for your reply. I find my problem, I used TabStop=True in my RadWindow.

I remove this property and it's work.

Regards

Tags
Docking
Asked by
Olivier
Top achievements
Rank 1
Answers by
Olivier
Top achievements
Rank 1
Nasko
Telerik team
Share this question
or