HI ,
There is a .(Dot) being displayed in grid while cell is in edit mode. I am aware that .(Dot) here is a decimal indicator however it should not be displayed, Please help me with removing the .(Dot).
Note : Mask is been used for the cell
Code snipet
<Style TargetType="{x:Type igEditors:XamNumericEditor}">
<Setter Property="PromptChar" Value="" />
<Setter Property="ValueType" Value="{x:Type sys:Double}" />
<Setter Property="Mask" Value="nnnnnnnnn.nnn" />
</Style>
Regards ,
SasiKumar K
Hello Sasikumar,
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.
Hi Stefan,
The solution you provided is alternate way of doing it, but it cost more time. But the actually thing is, it should be XamNumericEditor but when in edit it should not show the decimal indicator. Is this possible to achive?
Thanks,
Sasikumar
As I said it is not possible to remove the dot from the Edit mode whithout breaking part of the functionality of the editor. If you create a Mask whitout a dot, there won't be any, but the user won't be able to write down dot neither. This is why I suggested you to use XamTextEditor instead with a Regular Expression.