or
IsPinned=False in docking RadPane, but after loading it is showing animation and then hiding it. Is there any way I can disable this animation?
<telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding Name, Converter={StaticResource InsensitiveRevConverter}}"> <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <StackPanel Orientation="Horizontal" > <Image Source="{Binding Image}" /> <TextBlock x:Name="ShowELementPupUp" Text="{Binding Name}" /> <Popup PlacementTarget="{Binding ElementName=ShowELementPupUp}" Style="{StaticResource TooltipPopupStyle}" PopupAnimation="Scroll" > <telerik:RadGridView x:Name="RadGridViewOfPopUp" Visibility="{Binding ShowElements}" AllowDrop="True" AutoGenerateColumns="False" CanUserFreezeColumns="False" CanUserInsertRows="False" CanUserReorderColumns="False" CanUserSortColumns="False" CanUserDeleteRows="False" ShowGroupPanel="False" GridLinesVisibility="None" RowIndicatorVisibility="Collapsed" ShowColumnHeaders="False"> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn DataMemberBinding="{Binding Name, Mode=OneWay}" /> <telerik:GridViewDataColumn MinWidth="20" DataMemberBinding="{Binding UnweightedPercentage, Mode=OneWay}"/> </telerik:RadGridView.Columns> </telerik:RadGridView> </Popup> </StackPanel> </DataTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn>

<telerikQuickStart:QuickStart.ExampleHeader><Border telerikQuickStart:ThemeAwareBackgroundBehavior.IsEnabled="True" Grid.RowSpan="3" />protected override void InitGroups(){ DefaultGroupDescriptors = new GroupDescriptorCollection(); GroupDescriptor Descriptor_STKNR = new GroupDescriptor(); Descriptor_STKNR.Member = "Field1";
CountFunction cound = new CountFunction(); Descriptor_STKNR.AggregateFunctions.Add(cound); DefaultGroupDescriptors.Add(Descriptor_STKNR); GroupDescriptor Descriptor_MEAUF = new GroupDescriptor(); Descriptor_MEAUF.Member ="Field2";
SumFunction sum = new SumFunction(); Descriptor_MEAUF.AggregateFunctions.Add(sum);
DefaultGroupDescriptors.Add(Descriptor_MEAUF); }
// execut at the binding:
foreach (GroupDescriptor Elem in DefaultGroupDescriptors)
{
Grid.GroupDescriptors.Add(Elem);
AddAggregateFunctions(Grid, Elem);
} private static void AddAggregateFunctions(RadGridView Grid, GroupDescriptor Elem){ if (Elem.AggregateFunctions != null) { foreach (AggregateFunction Function in Elem.AggregateFunctions) { Grid.Columns[Elem.Member].AggregateFunctions.Add(Function); } }} Grid.GroupDescriptors.Add(Elem);
AddAggregateFunctions(Grid, Elem); CountFunction cound = new CountFunction(); Descriptor_STKNR.AggregateFunctions.Add(cound); DefaultGroupDescriptors.Add(Descriptor_STKNR);
... DefaultGroupDescriptors.Add(Descriptor_MEAUF);foreach (GroupDescriptor Elem in newValue){ AddAggregateFunctions(ActGrid, Elem); ActGrid.GroupDescriptors.Add(Elem);}