This question is locked. New answers and comments are not allowed.
Can a GridViewCheckBoxColumn trigger an event whe the value changes OR does a unbound checkbox need to be used? I have a GridViewCheckbox column but am struggleing on how it can update the view model without CelleditEnd being thrown.
<telerik:RadGridView ScrollViewer.VerticalScrollBarVisibility="Auto"RowDetailsVisibilityMode="VisibleWhenSelected" RowIndicatorVisibility="Collapsed"IsSynchronizedWithCurrentItem="True" AutoGenerateColumns="False" ItemsSource="{BindingPath=WorkAccessSource.View, Mode=TwoWay}" SelectionUnit="FullRow" SelectedItem="{BindingCurrentWorkAccessObject, Mode=TwoWay, UpdateSourceTrigger=Default}"SelectionMode="Single">
....
<telerik:RadGridView.Columns>
....
<telerik:GridViewCheckBoxColumn Header="Caps" DataMemberBinding="{Binding CallForCaps,Mode=TwoWay, Converter={StaticResource CharToBooleanConverter}}" IsSortable="True"IsGroupable="True" IsFilterable="False" IsReadOnly="False" HeaderTextAlignment="Center" />
...
</telerik:RadGridView.Columns>
<telerik:RadGridView ScrollViewer.VerticalScrollBarVisibility="Auto"RowDetailsVisibilityMode="VisibleWhenSelected" RowIndicatorVisibility="Collapsed"IsSynchronizedWithCurrentItem="True" AutoGenerateColumns="False" ItemsSource="{BindingPath=WorkAccessSource.View, Mode=TwoWay}" SelectionUnit="FullRow" SelectedItem="{BindingCurrentWorkAccessObject, Mode=TwoWay, UpdateSourceTrigger=Default}"SelectionMode="Single">
....
<telerik:RadGridView.Columns>
....
<telerik:GridViewCheckBoxColumn Header="Caps" DataMemberBinding="{Binding CallForCaps,Mode=TwoWay, Converter={StaticResource CharToBooleanConverter}}" IsSortable="True"IsGroupable="True" IsFilterable="False" IsReadOnly="False" HeaderTextAlignment="Center" />
...
</telerik:RadGridView.Columns>
