XamMaskEditor is not binding to a decimal property on my business object. The Set property does not fire.If I bind to a normal wpf textbox, the binding works.
Any ideas? What am I doing wrong?
<igEditors:XamMaskedEditor x:Name="maskedEditor" Grid.Row ="8" Grid.Column="3" Width="100" IsAlwaysInEditMode="True" DisplayMode="IncludeBoth"Text="{Binding Path=Income,ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged}"Mask="œnn,nnn,nnn.nn" />
Thanks,
Richard.
Adding DataMode="Raw" seemed to work.
<igEditors:XamMaskedEditor x:Name="maskedEditor" Grid.Row="8" Grid.Column="3" Width="100" IsAlwaysInEditMode="True"DisplayMode="IncludeBoth" Text="{Binding Income, Converter={StaticResource IdentityConverter}, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged}"DataMode="Raw" Mask="œnn,nnn,nnn.nn" />