You need to specify UpdateSourceTrigger=PropertyChanged on the Binding that is used in the CellEditor:
<hr>
<code>
<xcdg:CellEditor.EditTemplate>
<DataTemplate>
<xcd:AutoSelectTextBox Text=”{Binding RelativeSource={RelativeSource FindAncestor,
AncestorType=xcdg:Cell},
Path=ActualContent,
<b>UpdateSourceTrigger=PropertyChanged,</b>
Converter={StaticResource decimalConverter}}” />
</DataTemplate>
</xcdg:CellEditor.EditTemplate>
</code>
<hr>
I apologize, I had forgotten to include this in the sample code I posted…
Imported from legacy forums. Posted by Pascal (had 854 views)