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>
      <input type="text" ng-model="task.input_value">
     </li>
    </ul>
</form>
If in tasklist array i have 100+ tasks then it means i have more then 100 same ng-model values for <input type=text>. Here problem is that how can i get the values for <input type = text> against any task.id so that i can use those input values for my further use.
