This question is locked. New answers and comments are not allowed.
It appears that when I specify a converter on a control in a CellTemplate it does not work.
| <telerikGrid:GridViewDataColumn HeaderText="Totalable" |
| DataMemberBinding="{Binding IsTotalable}" Width="Auto"> |
| <telerikGrid:GridViewDataColumn.CellTemplate> |
| <DataTemplate> |
| <CheckBox IsChecked="{Binding IsTotalable, Mode=TwoWay}" |
| Tag="{Binding}" |
| Visibility="{Binding Path=TotalableIsAllowed, |
| Converter={StaticResource BooleanToVisibilityConverter}}" |
| IsEnabled="{Binding Path=TotalableIsAllowed}"/> |
| </DataTemplate> |
| </telerikGrid:GridViewDataColumn.CellTemplate> |
| </telerikGrid:GridViewDataColumn> |
I believe that Converters are new to SL3 and they are pretty handy.
I can provide a more comprehensive example if this isn't enough.
Best Regards, Jim
