Hello,
Thank you for the sample application, it helped me to find the error.
In your sample application you have set "MappingName" at the templatecolumn.
I thaught it's not nessecary to set a mappingname because the binding inside defines it and in 13.3.0.7 that was working.
What if I want to set more that one binding inside the template column? What is the correct MappingName then?
This is the working code with 14.4.0.20 now, defining "ImagePreview" two times:
<SfGrid:GridTemplateColumn HeaderText="Preview" MappingName="ImagePreview" AllowFiltering="False" AllowSorting="False" AllowGrouping="False">
<SfGrid:GridTemplateColumn.CellTemplate>
<DataTemplate>
<Image Source="{Binding ImagePreview, Converter={StaticResource ResourceKey=ByteArrayToImageConverter}}"/>
</DataTemplate>
</SfGrid:GridTemplateColumn.CellTemplate>
</SfGrid:GridTemplateColumn>
Regards
A.S.