ng-click on the following HTML is not working for me in AngularJS
<tr ng-repeat="ai in alert_instances" ng-click="go('/alert_instance/{{ai.alert_instancne_id}}')">
<td>{{ai.name}}</td>
<td>{{ai.desc}}</td>
</tr>
The "go" function in my controller at the moment just has
$scope.go = function (hash) {
console.log("hi")
};
You are doing it wrong. You shouldn't be using curly braces in Angular directives (ng-click
), as this syntax is aimed for templates.
A proper way:
<tr ng-repeat="ai in alert_instances" ng-click="go(ai)"> <td>{{ai.name}}</td> <td>{{ai.desc}}</td> </tr> $scope.go = function(ai) { var hash = '/alert_instance/' + ai.alert_instancne_id; //... };
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With