Hi,
I have a weird issue with a few ultranumericeditors.
If I set the value to something negative (just uneTotalSale.Value = -200) the control does not show any value at all (not a 0, just the .). I have the data type set to double. I have a few and they all behave the same way.
Not only that...but if I enter the control I am not able to leave it. There are no events hooked at all.
What am I missing?
Thanks,
M
Hello ,
What is the value of MinValue property. It seems to me that you are trying to set a value which is not in the range of MinValue and MaxVAlue property.
I am waiting for your feedback.
+-2147483647
The defaults...I just added the control and tested...I just changed the numeric type to Double.
Hello,
Have you set MaskImput to allow negative numbers - "{double:-9.4}" ?
Yeah...that was it..
I assumed though that the min max would override having to set an extra property you know? I would assume 'Double' as the type with a min max of -1000 to 1000 would allow me those ranges without the mask.
Thanks though, this helped!