How do you guys implement a number input field without thousands separator (just digits), with value range validation? In HTML, it’s just one simple line:
<input type="number" name="field-name" id="field-id" min="0" max="2000">
I’d been exploring different properties and content format but could not achieve this. There’s a property called “Show thousands separator”, but its functionality is not for this purpose.
Thanks.