By default the kendo-numerictext box uses the "n3" format. Is there any way to disable formatting? I would like the number displayed to be the number entered by the user.
Thanks!
1 Answer, 1 is accepted
0
Dimiter Topalov
Telerik team
answered on 14 May 2021, 07:28 AM
Hello Daniel,
Actually, the default NumericTextBox format is "n3", but it can be customized by the format option:
For example, to keep the number, entered by the user without additional formatting, the developer can use the "#" and "." (decimal separator) placeholders:
The number of allowed digits after the placeholder can vary, but the JavaScript numbers standard limitation due to storing numbers in double-precision IEEE 754 format still applies, so the respective limitations of correctly representing the user-entered number still apply.