I have a simple repeater in which each row can be edited in-line. As part of that repeater, when I add a new row I would like it to be in the editable state, not static. When I tried adding the $scope.editable = true to the Add Button, it makes the entire repeater editable.
Here's a plunker illustrating my code: http://plnkr.co/edit/tVOLYm2mg5be2L6NpM6k?p=preview
$scope.addRow = function() {
$scope.accounts.unshift({ name: 'Enter Name', id: 'Enter ID', code: 'Enter Code'});
//$scope.editable = true;
}
Can anyone assist with what I'm trying to accomplish?
thanks