Currently I have a XamMaskedInput defined as follows:
<ig:XamMaskedInput x:Name="mskRate" Value="{Binding Balances.Rate, UpdateSourceTrigger=LostFocus}" Grid.Column="1" Grid.Row="4" Mask="{}{double:2.4}" Format="p4" IsReadOnly="{Binding DataContext.ReadOnlyMode, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type views:AccountInReviewEditView}}}" Style="{StaticResource ReadOnlyMaskEdit}" Margin="5" HorizontalContentAlignment="Right"/>
When it receives a value of .2000, it displays correctly as 20.0000%. However when I go to edit the value to 10.0000%, it takes the value as 1000.0000%. How do I get the control to accept an edit of 10.0000% and store the value back in model as .100000?
Answer can be found here:http://ko.infragistics.com/community/forums/t/107249.aspx
Hi Chris,
Thank you for posting your findings here as this will be very helpful to other IG community forum members!
I regret not coming across your post sooner, but I am glad that your issue has been resolved and if there are any further questions with that I may assist you with, please let me know.
Warm regards,
Chris K.