HI,
I have a SFDatagrid that has a column like this:
<Syncfusion:GridImageColumn HeaderText="Image" MappingName="IconImage" ShowHeaderToolTip="False" AllowGrouping="False" AllowSorting="False" AllowFiltering="False" AllowEditing="False" Stretch="Uniform" >
</Syncfusion:GridImageColumn>
The mapped binded property "IconImage" is a ViewModel property that is quite slow, since it has to fetch a binary data from database and dynamically create a Bitmap image, before returning it.
So, I'm wondering if there is a way to mark this property as async. Otherwise the datagrid becomes very slow, waiting for the bitmap creation for every row that's displayed.
It should be very nice to have something similar to the "IsAsync
=
True"
that can be used with the "{Binding}" construct, but it seems it can't be used here.
Can you help me to correctly call this property asyncronously so that the datagrid is not freezed when scrolled ?
Silvio