Q227266 is the issue first reported and replied to - to my colleague Stephen Mills. (I don't see a way to reply to the original and/or see colleague issues anymore???)
We implemented the converter as you directed in the above referenced issue. (see below xaml snippet)
The text is being correctly converted to rtf and back.
Our problem is that when a new row is added or a row is edited, multiple rows are marked as "changed" in the datacontext.
When the rtf converter is removed from the xaml, the only record marked as changed is/are record(s) that have been added or edited, i.e. something with the converter is causing other rows, but not all rows, in the grid to be marked "changed" (haschanges).
Are you aware of this and/or do you have a work around?
<dxg:GridColumn Header="Contract Note"
MinWidth="200"
AllowEditing="True"
Visibility="Visible"
FieldName="ContractNote">
<dxg:GridColumn.CellTemplate>
<DataTemplate>
<dxr:RichEditControl HorizontalScrollBarVisibility="Collapsed"
Content="{Binding RowData.Row.ContractNote, Converter={StaticResource RtfToContentConverter}, Mode=TwoWay}"
ActiveViewType="Simple"
Height="75">
</dxr:RichEditControl>
</DataTemplate>
</dxg:GridColumn.CellTemplate>
</dxg:GridColumn>