I have the following scenario:
I am trying to change the value of a cell by using a custom presenter (see below for the XAML). My custom presenter is being hit but the grid is not showing the new value returned by the cusom converter. Can someone point out what i am doing wrong?
<Style x:Key="cvpValueChange" TargetType="{x:Type igDP:CellValuePresenter}">
<Setter Property="Value" Value="{Binding RelativeSource={RelativeSource Self}, Path=Value, Converter={StaticResource cvpValueConverter}}"/>
</Style>