If a `NumericTextBox` contains a value ending in `0` and the user edits the value by backspacing over the non-zero digits the next number entered replaces the zero instead of inserting before it.
For example, the starting value is:
`220`
The user clicks to place their cursor as so:
`22|0`
If they then hit backspace twice, the cursor will jump to after the zero:
`0|`
And when a new digit is entered it replaces the zero:
`3|`
I would expect the user to be able to enter new digits to appear before the zero rather than replacing it. This behavior is reproducible on the example on the Overview page in the documentation.
Is there any way to disable this behavior?