Angular ng-change for select not calling the declared method Angular ng-change for select not calling the declared method angularjs angularjs

Angular ng-change for select not calling the declared method


You have to define the method in the scope.

$scope.setBillGroup = function(){ console.log("setBillGroup method called!");    ...... };