My current scenario is: I've doing nesting repetition like follow:
<form name="task_form" ng-app="myApp" ng-submit="tasksubmit()">
<ul class="items-list">
<li ng-repeat="task in taskslist | orderBy:orderProp">
<p>
<strong>{{task.title}}</strong>
</p>
<select name="task_value" ng-model="task.dropdown_value" class="select-box">
<option ng-repeat="item in task.dropdown_values" value="{{item}}">{{item}}</option>
</select>
</li>
</ul>
</form>
In <li> I'm repeating the <option> too. I want to generate the dynamic ng-model values in <select ng-model="">.. So that i can get them in controller.. and distinguish them via their task.id.
tasklistarray of more then one hundred tasks. and each task containdropdownand having some values. when i submit the form then via upper coding i can't get the submited or selecteddropdown_valuefordropdownagainst thetask.idfor next use to send as done tasks..