Hello,
I have a column in which I use a converter to create a string based on some value that where inputted by the user. I attached this converter to my column using the code below:
DataMemberBinding="{Binding Path=., Converter={StaticResource MyConverter}}"
When I debug the code I can see the converter is running for the particular cell and generating a value thats specific for that row, but the cell itself is not updated with the new value, it remains empty?
The user is not able to enter data in this cell or set the focus, because the property IsReadOnly is set and I skip the cell during input, the values the user input are in inputted in a seperate dialog, after this dialog is closed the focus moves automatically to the cell next to it.
Am I forgetting here something to commit, it seems a very simple problem but I cant find it?
Regards,
Marcel