This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
AngularJS version 1.3.13 throws an error Error: [ngModel:numfmt] Expected 0.00
to be a number #11157
Closed
Description
I am getting the following error:
Error: [ngModel:numfmt] Expected `0.00` to be a number
http://errors.angularjs.org/1.3.13/ngModel/numfmt?p0=0.00
at REGEX_STRING_REGEXP (angular.js:63)
at Array.<anonymous> (angular.js:19884)
at Object.ngModelWatch (angular.js:23289)
at Scope.$get.Scope.$digest (angular.js:14235)
at Scope.scopePrototype.$digest (hint.js:1468)
at Scope.$get.Scope.$apply (angular.js:14506)
at Scope.scopePrototype.$apply (hint.js:1478)
at done (angular.js:9659)
at completeRequest (angular.js:9849)
at XMLHttpRequest.requestLoaded (angular.js:9790)
However, 0.00 is a number, so why would I see such an error?
The object generating this error is this:
<input type="number" name="creditLimit"
id="creditLimit"
ng-model="currentAccount.crLimit"
class="form-control"
min="0"
placeholder="1500.00"
data-sm:number data-sm:number-format data-accuracy="2" />