<div>
<table class="table">
<tbody>
<tr ng-repeat="student in ClassStudents | filter:stdsearch">
<td><input type="checkbox" ng-model="student.isselected"/></td>
</tr>
</tbody>
</table>
<div>
<input type="submit" ng-disabled="!student.isselected" value="Assign" />
</div>
</div>
I want enable button only when check box is checked. But it is not working for me. Please suggest.