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

RadDocking Loading Issue.

1 Answer 53 Views
Docking
This is a migrated thread and some comments may be shown as answers.
Sandeep
Top achievements
Rank 1
Sandeep asked on 28 Dec 2009, 10:16 AM
Hi,
     I have a issue in loading the RadDocking control [Version  2009.3.1103.1030 ]. Initially with the older version DLL, it worked fine , but when I migrated to the newer version, this problem arise . Moreover I am not able to trace the problem, as it never points in XAML or in the code behind for the ERRORS. Its just breaks. Here is the XAML :
<UserControl 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"  
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls" 
    xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data"   
    xmlns:telerikDocking ="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"
        <Grid x:Name="LayoutRoot"
        <Border Grid.Row="0"
            <Grid x:Name="uxMainGrid" MinHeight="430" Width="1100"
                <Grid.Resources> 
                    <ControlTemplate x:Name="uxContentControlWithFooterControlTemplate" 
                                     x:Key="ContentControlWithFooterControlTemplate" 
                                     TargetType="ContentControl"
                        <Grid> 
                            <Grid.RowDefinitions> 
                                <RowDefinition Height="*"/> 
                                <RowDefinition Height="50"/> 
                            </Grid.RowDefinitions> 
                            <ContentPresenter x:Name="uxContentControlWithFooterControlPresenter" Content="{TemplateBinding Content}" Grid.Row="0" /> 
                            <StackPanel Margin="5,0,5,5" Grid.Row="1"
                                <StackPanel.Background> 
                                    <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"
                                        <GradientStop Color="#FFA3AEB9" Offset="0"/> 
                                        <GradientStop Color="#FF8399A9" Offset="0.375"/> 
                                        <GradientStop Color="#FF718597" Offset="0.375"/> 
                                        <GradientStop Color="#FF617584" Offset="1"/> 
                                    </LinearGradientBrush> 
                                </StackPanel.Background> 
                                <TextBlock Padding="3" FontWeight="Bold" Text="xxxxxxxx" TextWrapping="Wrap"/> 
                            </StackPanel> 
                        </Grid> 
                    </ControlTemplate> 
                </Grid.Resources> 
                <telerikDocking:RadDocking Margin="10" Grid.Row="0">                     
                    <telerikDocking:RadSplitContainer ScrollViewer.HorizontalScrollBarVisibility="Auto" Background="White" Orientation="Vertical" InitialPosition="DockedLeft" Height="410" Width="1040"
                        <telerikDocking:RadPaneGroup> 
                            <telerikDocking:RadPane x:Name="uxSchedule" Header="Schedule" Title="XXXXXXXXXXXXXX"
                                <ContentControl Template="{StaticResource ContentControlWithFooterControlTemplate}" x:Name="uxContentControlWithFooterTelerikControlTemplate"
                                    <data:DataGrid Grid.Row="0"
                                       --------------- 
                                       --------------- 
                                    </data:DataGrid> 
                                </ContentControl> 
                            </telerikDocking:RadPane>                           
                        </telerikDocking:RadPaneGroup> 
                        <telerikDocking:RadPaneGroup telerikDocking:ProportionalStackPanel.RelativeSize="30, 30"
                            <telerikDocking:RadPane Title="XXXXX"/> 
                        </telerikDocking:RadPaneGroup> 
 
                        <telerikDocking:RadPaneGroup telerikDocking:ProportionalStackPanel.RelativeSize="30, 30"
                            <telerikDocking:RadPane Title="XXXXX"/> 
                        </telerikDocking:RadPaneGroup> 
                    </telerikDocking:RadSplitContainer> 
                     
                </telerikDocking:RadDocking> 
            </Grid> 
        </Border> 
    </Grid> 
</<UserControl

What am I missing in here. Please guide.

Thank You,
Sandeep M Shetty.

1 Answer, 1 is accepted

Sort by
0
Miroslav Nedyalkov
Telerik team
answered on 28 Dec 2009, 12:03 PM
Hi Sandeep,

 I tried your code with the latest official assemblies (2009.3.1208) and it works fine. Could you please download the latest official version (SP1) and try with it. 

If this doesn't help, could you please open as support ticket and send us a sample project that reproduces the issue. This would help us find out what the problem is.

All the best,
Miroslav Nedyalkov
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Docking
Asked by
Sandeep
Top achievements
Rank 1
Answers by
Miroslav Nedyalkov
Telerik team
Share this question
or