This question is locked. New answers and comments are not allowed.
I'm unable to drag drop column headers into the grouping panel. The grid below was simply dragged onto the user control and bound - no coded events, no customization. When you try to drag the column header, it shows that dragging is disabled.
Here's the xaml:
Here's the xaml:
<UserControl |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
mc:Ignorable="d" |
xmlns:local="clr-namespace:Compliance360.Client.UserControls" |
xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls" |
xmlns:telerikInput="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Input" |
xmlns:dataInput="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data.Input" |
xmlns:uiFramework="clr-namespace:Compliance360.Client.UIFramework" |
xmlns:telerikGridView="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView" |
xmlns:Telerik_Windows_Controls_GridView="clr-namespace:Telerik.Windows.Controls.GridView;assembly=Telerik.Windows.Controls.GridView" |
xmlns:uploadControl="clr-namespace:Compliance360.Client.UserControls" |
x:Class="Compliance360.Client.UserControls.WizardActionConfirmation" |
d:DesignWidth="1024" d:DesignHeight="600" MinHeight="600"> |
<Grid x:Name="LayoutRoot" Background="{StaticResource BowneWhite}"> |
<StackPanel Margin="0,8,0,0"> |
<StackPanel Margin="8"> |
<StackPanel Height="384"> |
<TextBlock HorizontalAlignment="Left" Margin="8" FontFamily="Arial" FontSize="14" FontWeight="Bold" Foreground="{StaticResource BowneBlue}" Text="1. step action...." TextWrapping="Wrap"/> |
<telerikGridView:RadGridView ItemsSource="{Binding Revision.FilingRevisionContacts}"/> |
</StackPanel> |
</StackPanel> |
</StackPanel> |
</Grid> |
</UserControl> |