Your selected value is defined as ng-model
. On ng-change
you can call a method from the controller and provide the "selected" ng-model
to this method.
Here is an example:
Controller
$scope.changeItem = function(iem){
}
As a side note, I would use ng-options
instead of