I am using ui-Grid v 3.0.1.
I have a custom cell template for a particular column which displays a button in each row. I have attached a ng-click attribute which ca
Just add
$event.stopPropagation();
to the ng-click
attribute as you can see in this plunker.
You can chain javascript
calls inside your ng-click
attribute just by writing them one next to another with a ;
as a separator like this:
ng-click = "instructionOne(); instructionTwo(argument); $event.stopPropagation();"