Hi.
I using my own style for XamNumericEditor in XamDataGrid:
<Style TargetType="{x:Type igEditors:XamNumericEditor}">
<Setter Property="Mask" Value="nnn.nnn"/>
<Setter Property="PromptChar" Value=" "/>
</Style>
When a user trying to enter some number, for example "12,456", he enters "1", then "2", then ",". But at this step he does not see a comma. When the user enters "4" he sees that there is a comma and number 4.
What I need to do to show comma when the user enters it?
I need positive numbers only.
I tried different masks but comma does not shown when i press button ","
Hello,
I am just checking the progress of this issue and was wondering if you managed to achieve your goal or if you need any further assistance on the matter.
If the above suggestion helped you solve your issue please verify the thread as answered so other users may take better advantage of it.
Hello Nicolay,
I have been looking into you requirement and I can suggest you follow this link in pour online documentation describing masks: http://help.infragistics.com/NetAdvantage/WPF/2011.1/CLR4.0/?page=xamEditors_Masks.html and use a mask like this one Mask="{}{double:3.3:c}".
Please let me know if this solves your issue or if I have misunderstood you in any way.