how to call function using angularjs ng-click on template that has render from controller of grails. i have try this. but jquery function calling works well.. but ng-click() function not working..what wrong with me.i am battling with this.
My controller function:
$scope.editTasks = function(){
console.log("uu");
}
my template has rendered code inside of table:
<button class="table-icon editIcon" ng-click="editTasks()" />
You have to define a controller and wrap your button inside it:
HTML:
JS: