How do I configure on UltraNumericEditor to have leading zeros.
For example: when I configure Mask Input = {double:6.4} if user type 123.45 the value of ultranumericeditor will show like that 000123.4500
Can I configure UltraNumericEditor like above? Because I have many many forms use this control so I don't want to code on every form :(
Any help will be appreciate, :)
Thanks,
Dan
Ooops, I already found a way to do like that :(
First, I set the PromptChar from _ to 0
Second, I set "Mask Display Mode" to Include Both
That's ok :)
:(, I still have problem with the format of UltraNumericEditor.
If my user want to show a negative sign at the left of the number, then I don't know how to format.
For example: when user type -1234.56, UltraNumericEditor will show: -001234.5600 not like that 00-1234.5600
Thanks a lot for any helping :)