I use ng-repeat to generate some tables, like this:
<table ng-repeat="table in tables">
<tr ng-repeat="row in rows">
<th>
<a href='#' ng-click="removerow()">remove row</a>
</th>
</tr>
<tr>
<th>
<a href='#' ng-click="addrow()">Add row</a>
</th>
</tr>
</table>
Now I want to add and remove rows in a single table without affecting the other tables.