I have a RadNumericUpDown control that's *typically* used for integer input. However, on rare occasions, there is a need to enter a floating point value with up to 4 decimal digits - the bound property is actually a FLOAT.
I know I can configure the control with "NumberDecimalDigits=4" and it will work as expected. However, I dislike the trailing ".0000" that's displayed when the control is being used to enter INT values, which again, is most of the time.
So, is it possible to configure the control to *allow* decimal digits to be entered, but to not display them unless they exist? So, if I enter an INT, I want it to be displayed as an INT (no decimal digits), and if I enter a FLOAT I want it to be displayed as a float - with all entered decimal digits.
Thanks,
Jeff