In UltraNumericEditor ,
i have the MinValue=0 and MaxValue=100
NumericType=double
but it allows me to enter upto 100.99
how to resrict that to 100.00
I'm assuming that the control is not letting you exit edit mode, or lose focus, with a value of 100.99. If so, this is the expected behavior with the mask controls because it is not possible to determine if the user was editing the decimal portion with the intent of changing the integer portion afterwards. For example, the user might already have 100 as the value and decide to type in ".99", then afterwards change the 100 to 50.
-Matt
Yes you are right,Am not able to exit from edit mode.
But why to allow them to enter more than 100.00
As it is not allowing me to enter 101 or more than 100.99.
Here it should not allow me to enter 100.99 too.
Problem i have faced.
By mistake i enter 100.01 in that UltraNumericEditor and i was trying to click out of that control.
but i was not able to click any where on the page.
I was strucked there.
and after analysing i chaged the value of that control.
but we cant expect the same from the end user
Hope u would understand the situation