I can create a select tag and place data inside it. I can assign that select\'s selected option to a model but can\'t assign its text to another model.
Here is example b
Please see demo below In select change your model to cutomer and in inputs use customer.id customer.name
function DemoCtrl($scope) { $scope.content = [{ name: "Bireysel", id: 1 }, { name: "Kurumsal", id: 2 }, { name: "Bireysel & Kurumsal", id: 3 }]; }