This question is locked. New answers and comments are not allowed.
I'm binding a custom property to the footer like so:
The footer gets the initial value of this property but when the property changes through INotifyPropertyChanged the footer does not update. If I bind this property to a control outside of the grid it updates in real time as expected.
<telerik:GridViewDataColumn.Footer> <TextBlock Text="{Binding TotalAvailableCapacity, Source={StaticResource myContext}}"></TextBlock> </telerik:GridViewDataColumn.Footer>The footer gets the initial value of this property but when the property changes through INotifyPropertyChanged the footer does not update. If I bind this property to a control outside of the grid it updates in real time as expected.