I have this DataTemplate for my RadGridView with a binding:
<DataTemplate x:Key="StatusTemplate">
<local:StatusIndicator Style="{StaticResource StatusIndicator}" IsEnabled="{Binding}" />
</DataTemplate>
I'm using it on my GridViewDataColumn like this, where I bind booleans from my ItemsSource:
<telerik:GridViewDataColumn DataMemberBinding="{Binding Enabled}" CellTemplate="{StaticResource StatusTemplate}" />
<telerik:GridViewDataColumn DataMemberBinding="{Binding Connected}" CellTemplate="{StaticResource StatusTemplate}" />
But the Enabled and Connected properties assigned to the DataMemberBinding is not working,