AngularJS number input formatted view
As written in the comments, input type=”number” doesn’t support anything but digits, a decimal separator (usually , or . depending on the locale) and – or e. You may still enter whatever you want, but the browser will discard any unknown / incorrect character. This leaves you with 2 options: Use type=”text” and pattern validation … Read more