or
<telerik:RadGridView ShowGroupPanel="False" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Name="RadGridView1" AutoGenerateColumns="False" > <telerik:RadGridView.Columns> <telerik:GridViewDataColumn DataMemberBinding="{Binding FirstName}" Header="First Name"/> <telerik:GridViewDataColumn DataMemberBinding="{Binding LastName}" Header="Last Name"/> </telerik:RadGridView.Columns> <telerik:RadGridView.ChildTableDefinitions> <telerik:GridViewTableDefinition/> </telerik:RadGridView.ChildTableDefinitions> <telerik:RadGridView.HierarchyChildTemplate> <DataTemplate> <telerik:RadGridView ItemsSource="{Binding Content}" ShowGroupPanel="False" /> </DataTemplate> </telerik:RadGridView.HierarchyChildTemplate></telerik:RadGridView>hi
i'm using Radgridview , My scenario is i have totals in one row i need to enter some numbers in next row cells ,when ever i entered number ,based on that number it calculate % of above totals and the calculated figure should be displayed in next row ..... how to implement this cell triggers using C# plz help me
If you see below attachment u can understand .. if i enter 10 in cell then the calculated total figure should to next row cells
thanks in advance
System.Windows.ResourceDictionary Warning: 9 : Resource not found; ResourceKey='Telerik.Windows.Controls.InternalResourceKey'; ResourceKey.HashCode='0'; ResourceKey.Type='Telerik.Windows.Controls.InternalResourceKey'System.Windows.Data Error: 4 : Cannot find source for binding with reference 'RelativeSource FindAncestor, AncestorType='Telerik.Windows.Controls.RadGridView', AncestorLevel='2''. BindingExpression:Path=FontSize; DataItem=null; target element is 'ListBox' (Name='PART_DistinctValuesList'); target property is 'FontSize' (type 'Double')<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="/myAssembly;component/Resources/Theme/System.Windows.xaml" /> <ResourceDictionary Source="/myAssembly;component/Resources/Theme/Telerik.Windows.Controls.xaml" /> <ResourceDictionary Source="/myAssembly;component/Resources/Theme/Telerik.Windows.Controls.Input.xaml" /> <ResourceDictionary Source="/myAssembly;component/Resources/Theme/Telerik.Windows.Controls.Navigation.xaml" /> <ResourceDictionary Source="/myAssembly;component/Resources/Theme/Telerik.Windows.Controls.GridView.xaml" /> </ResourceDictionary.MergedDictionaries> <!-- Dummy Style --> <Style TargetType="{x:Type Rectangle}" /></ResourceDictionary>