I am trying to bind a IsChecked property of a RadMenuItem and does not fire the set event on my ViewModel property. When I had it set to a regular MenuItem, this was working. Is this not supported in the RadMenuItem?
DOES NOT WORK:
<telerikNavigation:RadMenuItem x:Name="ShowSummary" |
Header="Value Summary" |
IsChecked="{Binding Path=IsSummaryChecked}" |
IsCheckable="True" /> |
WORKS:
<telerikNavigation:RadMenuItem x:Name="ShowSummary" |
Header="Value Summary" |
IsChecked="{Binding Path=IsSummaryChecked}" |
IsCheckable="True" /> |