Hi,
I need to show the aggregated functions results from the footer outside of the RadGridView (binded to a TextBlock, let's say).
So, if I have:
Thanks!
I need to show the aggregated functions results from the footer outside of the RadGridView (binded to a TextBlock, let's say).
So, if I have:
<
telerikControls:RadGridView Name="MyGrid" CanUserFreezeColumns="False" ....
with a column like this:
<
telerikControls:GridViewDataColumn Header="MyColumn" IsFilterable="False"
DataMemberBinding="{Binding MyProperty}">
<telerikControls:GridViewDataColumn.AggregateFunctions>
<telerikData:CountFunction Caption="Count: " />
</telerikControls:GridViewDataColumn.AggregateFunctions>
</telerikControls:GridViewDataColumn> ...
and somewhere in the UI, a textblock like this:
<
TextBlock Name="MyTextBlock" Text="{Binding ElementName=MyGrid, Path=???CountResultFromFooter???}" />
How can I bind to MyTextBlock the result of the count aggregate function from MyColumn column?
Thanks!