Angular ng-change for select not calling the declared method

22,710

You have to define the method in the scope.

$scope.setBillGroup = function(){
 console.log("setBillGroup method called!");
    ......
 };
Share:
22,710
user6123723
Author by

user6123723

Link

Updated on September 22, 2020

Comments

  • user6123723
    user6123723 over 3 years

    I have the following html form select statement

    <select ng-change="setBillGroup()" ng-model="bill.groupId" class="span8" ng-options="d.id as d.name for d in groups"></select>
    

    and the js

    myApp.controller('myAppController', function($scope, myAppService) {
    
    .....
    function setBillGroup(){
     console.log("setBillGroup method called!");
        ......
     }
    
    ....
    });
    

    But for some reason the setBillGroup() never seems to get called when I select something or the other in the form.