0
Goodnight!
I’ve got a problem I haven’t found a solution to
First I make a query in the database that returns me some values and I play within a table with ng-repeat
Table
<tr ng-repeat="contrato in contratos">
<td>{{contrato.NOME}}</td>
<td>{{contrato.CPF_CONTRATO}}</td>
<td>{{contrato.NUMERO_CONTRATO}}</td>
<td>{{contrato.FISICO}}</td>
<td><input type="checkbox" /></td>
</tr>
so far so good, but I need to make sure that by clicking on checkbox
I get the NUMERO_CONTRATO
and move to a function
in my controller
Function
$scope.PegaContrato = function () {
}
And it’s got more than one contract to go ?
– Vagner Bellaver