I have the following doubt in this code.
<table class="table table-bordered table-hover">
<thead>
<tr class="bg-info table-responsive table-bordered table-striped">
<th>Cpf</th>
<th>Nome</th>
<th>Marque</th>
</tr>
</thead>
<tbody ng-repeat="list in listaDeAlunos" >
<tr>
<td>{{list.cpf}}</td>
<td>{{list.nome}}</td>
<td><input type="checkbox" value="{{list.cpf}}"></td>
</tr>
</tbody>
</table>
I want to store in an array in the controller by ng-click all the students (all their data) selected by the checkbox, which are in this table. Is that possible?