I’m having trouble getting the automatic spell checker to work inside a radgridview column.
Here is a simplified version of my grid:
<telerik:RadGridView Grid.Row="1" ItemsSource="{Binding Path=Calls, Mode=TwoWay}" AutoGenerateColumns="False"
GroupRenderMode="Flat"
SelectedItem="{Binding Path=SelectedCall, Mode=TwoWay}" CanUserInsertRows="True" CanUserDeleteRows="True"
IsFilteringAllowed="False"
RowIndicatorVisibility="Collapsed"
ShowGroupPanel="False"
ValidatesOnDataErrors="InViewMode"
AlternationCount="2" Name="CallsGrid"
telerik:RadGridViewSpellCheckHelper.IsSpellCheckingEnabled="True">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="Notes" telerik:RadGridViewSpellCheckHelper.IsSpellCheckingEnabled="True"
DataMemberBinding="{Binding CallNotes, Mode=TwoWay}" MinWidth="100" Width="*" >
</telerik:GridViewDataColumn>
</telerik:RadGridView.Columns>
</telerik:RadGridView>
The spell checker comes up after I move out of the notes field and works as expected, however after the spell checker is done and has the correct notes string, it does NOT update the field with the corrected string.
I have noticed the same behavior in the online demos for WPF spellchecker (Spell Checking RadGridView) the manual triggering of spell checking column works however the automatic spell checking column does not update the field with the correct values.
What am I doing wrong?