37

Have a kind of price range/rating functionality based on an inputs model. On load, when it's set from the backend, it starts off as an integer, but when you type in it, it changes to a string. Is there any way in Angular to declare the value of an input as integer?

HTML:

<input type="text" name="sellPrice" id="sellPrice" class="sell-price" data-ng-model="menu.totalPrice" data-ng-change="updateMenuPriceRange()"required>

JS:

$scope.updateAggregatePricing();

if ($scope.menu.totalPrice === 0) {
    $scope.menuPriceRange = "";
} else if ($scope.menu.totalPrice < 10) {
    $scope.menuPriceRange = "$";
} else if ($scope.menu.totalPrice >= 10 && $scope.menu.totalPrice <= 12.50) {
    $scope.menuPriceRange = "$$";
} else if ($scope.menu.totalPrice >= 12.51 && $scope.menu.totalPrice < 15) {
    $scope.menuPriceRange = "$$$";
} if ($scope.menu.totalPrice >= 15) {
    $scope.menuPriceRange = "$$$$";
} else {
    $scope.menuPriceRange = "";
}

4 Answers 4

85

I know I'm late but I figured I'd post this answer as other people might still be searching for alternatives.

You could solve this by using the AngularJS directive linking function. The code:

var myMod = angular.module('myModule', []);

myMod.directive('integer', function(){
    return {
        require: 'ngModel',
        link: function(scope, ele, attr, ctrl){
            ctrl.$parsers.unshift(function(viewValue){
                return parseInt(viewValue, 10);
            });
        }
    };
});

You would then use this directive on an input element to make sure that any value you enter, gets parsed to an integer. (obviously this example doesn't validate the input to make sure that what was entered is in fact an integer, but you could easily implement this with the use of regular expressions for example)

<input type="text" ng-model="model.value" integer />

More information about this topic can be found on the AngularJS docs on forms, right around the section of "Custom validation": http://docs.angularjs.org/guide/forms .

Edit: Updated parseInt() call to include the radix 10, as suggested by adam0101

Sign up to request clarification or add additional context in comments.

10 Comments

Thanks! This helped with an issue I was having where I had radio buttons with values bound to the same model as a input (type=number).
Aha! I knew there had to be a less kludgy way to do this than what I've been doing. :) Thanks!
Changing this as the answer since it's reusable and seems like the the right way to do it :} Thanks!
You should include a radix of 10 as in parseInt(viewValue, 10) otherwise a leading zero may give an unexpected value in some browser implementations.
The given example pulls NaN to model if the input is empty. Maybe that is desired effect but in most usecases I would expect 0 in the model. The solution is here.
|
23

Yes, use input of type number:

<input type="number" name="sellPrice" ...>

2 Comments

It's actually a decimal, and the number html5 input doesn't seem to work for it anyway. Thanks though!
Does not work in IE 9. The model value will be set as a string for IE9
8

Ended up parsing the model as an integer before my conditional.

$scope.menu.totalPrice = parseInt($scope.menu.totalPrice, 10);

2 Comments

It's a decimal so parseFloat($scope.menu.totalPrice) is a better solution
I agree! I think Yaniks solution works perfectly though.
0

Very similar to the accepted answer from Yanik, except I tried that and it didn't work. This version from the AngularJS documentation is working perfectly for me, though.

.directive('stringToNumber', function() {
    return {
        require: 'ngModel',
        link: function(scope, element, attrs, ngModel) {
          ngModel.$parsers.push(function(value) {
            return '' + value;
          });
          ngModel.$formatters.push(function(value) {
            return parseFloat(value);
          });
        }
      };
    });

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.