This question is locked. New answers and comments are not allowed.
Hello,
I have a Numeric Box formatted to display as a percent. It initially displays the value as expected - for example .25 will show as 25%. But there's an issue with manual input of the value from the keyboard. For example, to specify a value of 50%, the user must type 0.5, rather than 50, which is undesirable. Is there any way to configure the numeric box to allow the user to type "50" to specify 50%?
Here is how I've defined the control:
Thanks!
Geoff
I have a Numeric Box formatted to display as a percent. It initially displays the value as expected - for example .25 will show as 25%. But there's an issue with manual input of the value from the keyboard. For example, to specify a value of 50%, the user must type 0.5, rather than 50, which is undesirable. Is there any way to configure the numeric box to allow the user to type "50" to specify 50%?
Here is how I've defined the control:
<telerik:RadNumericBox Value="{Binding FrequencyPercent, Mode=TwoWay}" VerticalAlignment="Center" AllowNullValue="False" ValueFormat="{}{0,0:P2}" SmallChange="0.01" LargeChange="0.1" Maximum="1" />Thanks!
Geoff