[UI] Number input without thousands separator

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.

I just retry again, above HTML is not exactly what I need as it accepts decimal point. Please ignore this question.

– closed –

This topic was automatically closed after 70 days. New replies are no longer allowed.