Data display in table form. and i want to get siblings input value on dropdown onchange.
<tr ng-repeat="x in record">
          <td>{{x.company }}</td>
          <td>{{x.contact}}</td>
          <td>
          <input type='hidden' value="{{x.id}}">
          <select name='status' >
            <option value='1'>Active</option>
            <option value='0'>Inactive</option>
            </select> 
            </td>
      </tr>
How can we get it.
 
     
    