So far I've the following function called onGroundUserClick on the Scope passedScope.
I want to set it up so a function running when the iframe is loaded will set up ng-click.
var $tdName = $("<td/>", {
"class": "name",
"ng-click": "passedScope.onGroupUserClick(this)",
});
When I open the developer console in Chrome I see the ng-click attribute was indeed added to the button but it does not fire up the event.
a class="link" ng-click="passedScope.onGroupUserClick(this)" href="">Account Manager a
Any advice will be greatly appreciated.. I'm kind of stuck here.