This question is locked. New answers and comments are not allowed.
Hi everyone,
At moment i'm working with the telerikGridView and I have a little problem in relation to the GroupFooter by Binding property.
I can´t show the real value of my property inherited of Funcionario class. I think thats problem is a Mistake myself into the code.
The Property Cli_Tot_SldDev is child of Funcionario class. When I use the property Binding of TextBlock Control, the Result doesn´t show in the MainPage. But, if I Insert the Value manually into the property Text="Value", it's show correctly in the MainPage.
Please, I need your help ASAP.
Tnks.
At moment i'm working with the telerikGridView and I have a little problem in relation to the GroupFooter by Binding property.
I can´t show the real value of my property inherited of Funcionario class. I think thats problem is a Mistake myself into the code.
The Property Cli_Tot_SldDev is child of Funcionario class. When I use the property Binding of TextBlock Control, the Result doesn´t show in the MainPage. But, if I Insert the Value manually into the property Text="Value", it's show correctly in the MainPage.
| <telerikGridView:GridViewImageColumn.Footer > |
| <Grid HorizontalAlignment="Center"> |
| <Grid.ColumnDefinitions> |
| <ColumnDefinition Width="Auto" /> |
| <ColumnDefinition /> |
| </Grid.ColumnDefinitions> |
| <!--<TextBlock Text="0" VerticalAlignment="Center" TextWrapping="Wrap" FontWeight="Bold" Foreground="#FF1F46F6" Grid.Column="1" />--> |
| <TextBlock Text="{Binding Cli_Tot_SldDev}" VerticalAlignment="Center" TextWrapping="Wrap" FontWeight="Bold" Foreground="#FF1F46F6" Grid.Column="0" /> |
| </Grid> |
| </telerikGridView:GridViewImageColumn.Footer> |
Please, I need your help ASAP.
Tnks.
| <telerikGridView:RadGridView x:Name="RadGridViewCli" Grid.Row="1" CanUserFreezeColumns="False" AutoGenerateColumns="False" ItemsSource="{Binding Cliente}" IsReadOnly="True" RowIndicatorVisibility="Collapsed" controls:StyleManager.Theme="Office_Black" ShowColumnFooters="True" ShowGroupFooters="True" Exporting="RadGridViewCli_Exporting"> |
| <telerikGridView:RadGridView.Columns> |
| <telerikGridView:GridViewToggleRowDetailsColumn CellStyle="{StaticResource StretchedCellStyle}" /> |
| <telerikGridView:GridViewDataColumn DataMemberBinding="{Binding Cli_Nome}" Header="Clientes" > |
| <telerikGridView:GridViewDataColumn.AggregateFunctions> |
| <telerikData:CountFunction Caption="Total Clientes: "/> |
| </telerikGridView:GridViewDataColumn.AggregateFunctions> |
| </telerikGridView:GridViewDataColumn> |
| <telerikGridView:GridViewImageColumn DataMemberBinding="{Binding Cli_SaldoDevedor}" Header="Sldo Dev. AD" ImageStretch="None" > |
| <telerikGridView:GridViewImageColumn.Footer > |
| <Grid HorizontalAlignment="Center"> |
| <Grid.ColumnDefinitions> |
| <ColumnDefinition Width="Auto" /> |
| <ColumnDefinition /> |
| </Grid.ColumnDefinitions> |
| <!--<TextBlock Text="0" VerticalAlignment="Center" TextWrapping="Wrap" FontWeight="Bold" Foreground="#FF1F46F6" Grid.Column="1" />--> |
| <TextBlock Text="{Binding Cli_Tot_SldDev}" VerticalAlignment="Center" TextWrapping="Wrap" FontWeight="Bold" Foreground="#FF1F46F6" Grid.Column="0" /> |
| </Grid> |
| </telerikGridView:GridViewImageColumn.Footer> |