This is a follow-up question to which ng-click takes precedence in a table?
Basically, I'd like to ensure, that whenever the cell is clicked, action1 will be executed first, completed, followed by action2. Is there a way to enforce that?
<table>
<tbody>
<tr ng-repeat="..." ng-click="ctrl.action1()" >
<td>
<a class="..." ng-click="ctrl.action2()"><i class="..."></i></a>
</td>
</tr>
</tbody>
</table>