It is possible to enable a checkbox generated by an ng-repeat, I know that we must take into account the index by the ng-repeat that I am using, as I am doing it active or deactivates all the checkboxes at the same time.
<input ng-model="data.acepta"
class="flipswitch"
name="acepta"
style="width:50px"
id="acepta"
ng-disabled= "locked"
type="checkbox"
>
In the js inside the controller I have this, the variable idx has the index of the ng-repeat:
if(TIPITV[idx]=="Ok")
{
$scope.locked = false;
}
Best regards