Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
295
UltraNumericEditor decimal separator
posted

I have an UltraNumericEditor with NumericType set to Double and a MaskInput set to "{double:-9.2}". 

The control automatically shows the decimal separator when there is no value set. I would like the decimal separator to only appear when a value has been set, simililar to the standard System.Windows.Forms.NumericUpDown. Is this possible?

Parents
No Data
Reply
  • 37774
    posted

    You can do this by setting the Nullable property to True, since this then pick up the NullText property of the control, which defaults to an empty string.

    -Matt

Children