Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
370
Converter on Xamdatagrid
posted

Hi,

I have a sceneraio wherein one of my column in database is of type blobdata (image). This column is bound to xamdatagrid using a converter, in which convert method takes care of converting the blobdata to a dataset. This works fine but the convertback method doesn't get called even when there are changes on the xamdatagrid.

Here is how i have binded to the datagrid.

DataSource

="{Binding Path=Data, Converter={StaticResource blob2XmlConverter},Mode=TwoWay}"

Also i have tried using UpdateSourceTrigger with all the 3 different options but to no avail.

Could anyone point or suggest whats going wrong here if its really possible to have converters in Xamdatagrid?

Thanks in advance.