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

Tabbed Document Disappears!

1 Answer 41 Views
Docking
This is a migrated thread and some comments may be shown as answers.
Mayra
Top achievements
Rank 1
Mayra asked on 22 Oct 2011, 09:01 AM

  When I click Tabbed Document in the pane, it disappears. I would appreciate the response.
Any idea ?
Here it is the structure.  
<Grid x:Name="LayoutRoot">         <Grid.ColumnDefinitions>             <ColumnDefinition />         </Grid.ColumnDefinitions>                <telerik:RadDocking  HorizontalAlignment="Stretch"                               Grid.Column="0"                               HasDocumentHost="False"                            >                   <telerik:RadSplitContainer Orientation="Vertical"                                         telerik:RadDocking.FloatingSize="600,250">                 1 group <telerik:RadPaneGroup  >                              <telerik:RadPane Header="Strategy Drawdown Curve"                                       CanUserClose="False"                                      TitleTemplate="{StaticResource PaneButtonsTitleTemplate}">                         <Grid x:Name="DrawdownLayout">                             <Grid.RowDefinitions>                                 <RowDefinition Height="*"/>                             </Grid.RowDefinitions>                            <telerik:RadChart> ... </telerik:RadChart>
  			</telerik:RadPane>
                </telerik:RadPaneGroup >
		2 group																
		 <telerik:RadPaneGroup  >
        
                    <telerik:RadPane Header="Strategy Drawdown Curve" 
                                     CanUserClose="False"
                                     TitleTemplate="{StaticResource PaneButtonsTitleTemplate}">
                        <Grid x:Name="DrawdownLayout">
                            <Grid.RowDefinitions>
                                <RowDefinition Height="*"/>
                            </Grid.RowDefinitions>
                           <telerik:RadChart>
				...
                           </telerik:RadChart>
																				
  			</telerik:RadPane>
                </telerik:RadPaneGroup >
             </telerik:RadSplitContainer>    
        </telerik:RadDocking>
    </Grid>
	
	Any idea ?	

Regards,

1 Answer, 1 is accepted

Sort by
0
Miroslav Nedyalkov
Telerik team
answered on 26 Oct 2011, 08:58 AM
Hello Mayra,

As you set the HasDocumentHost property of the RadDocking control to false, the DocumentHost area doesn't exist anymore. When you click the Tabbed document menu item, it sends the pane to the DocumentHost area which is not visible and that is why the pane disapperas. When you don't have DocumentHost in your docking control you should set the CanDockInDocumentHost property of all the panes to false.

Hope this helps.

Best wishes,
Miroslav Nedyalkov
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

Tags
Docking
Asked by
Mayra
Top achievements
Rank 1
Answers by
Miroslav Nedyalkov
Telerik team
Share this question
or