The value which is displayed in the UltraNumericEditor control looks truncated due to spinbutton. I have set the following property of control like the following.
Spinbuttonalignement -Right and Spinbuttondisplaystyle as Always.
The width of control is set to 75. When it displays for eg the value is 123, we only see 12, the 3 gets behind the Spinbuttonalignement. When we click on the control we could see the value as 123, but if change the focus, it will be truncated to 12.
I tried increasing the width which will resolve the issue for small numbers, but when i tried with a big number 469852, it shows as 46985 and 2 gets hidden. As we cannot predict what will be the range of values coming in, we cannot set any fixed width to resolve this issue.
Please let me know how this can be solved?
What version of the controls are you using?
It looks like the control is scrolling the first character of the mask into view and so some of the ending characters are getting scrolled out of view. My advice would be to make the control wider so that the entire mask fits in the displayable area. Or maybe use a smaller mask.
But there have also been some bugs in the past that caused some weird scrolling issues, so you might also want to get the latest service release.
How to get the latest service release - Infragistics Community
Thank you very much for your comments
This issue has been resolved by changing 'MaskDisplayMode' as 'MaskMode.IncludeLiterals'