Hi,
I need to do something like the following :
<r:GridViewColumn Header="{Binding Path=Whatever}">
<r:GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding TotalUnits}" />
</DataTemplate>
</r:GridViewColumn.CellTemplate>
</r:GridViewColumn>
It doesn't work. There's no binding error displayed to the Output Window (normally, all binding errors are displayed there). The header is just plain empty in my grid. Before you tell me that the property may not exist, I must add that I also tried {Binding .} (or {Binding Path=.} if you prefer); at least, it should display the ToString value of the current DataContext, whatever it is, but again, nothing is displayed.
Thanks in advance