AngularJS model of select returns undefined

  1. init your model variable in your controller “$scope.remark = ‘’”
  2. Be sure if you have complex forms you need an object to store form values like
    $scope.form = {}

and your model for your text input: ng-model="form.remark"
angular will create a new key in $scope.form -> $scope.form.remark with the databinding to your inputfield…