<div class="form-group">
<label for="title" class="col-sm-2 control-label">Section Id</label>
<div class="col-sm-10">
<select ng-model="product.sectionId" class="form-control" ng-options="section.name for section in sections track by section.id">
</select>
</div>
</div>
This is my code, I populate the sections
object via JSON and section has id,name
. I want to store only section.id
in my product.sectionId
but it stores both section id and name as below
"sectionId":{"id":"Iron Man","name":"Superman"}
. I want only the id to be stored. Is there a way to do that. Im new to bootstrap and angularjs please help me. thank you
Change your
ng-option
toMarkup
This will should
section.name
and selectsection.id
when you select any of the option.Direct From Docs