I have an angular application that is also using jquery.dataTables. When I use datatables to build a dynamic table with th
this all for Jquery datatable.
"Link": "
write like this
"Link": "
this resolve my problem for Jquery datatable
but if you have angulrjs datatable and you are unable to work with ng-click or other events of angulrjs then you just have to compile what like
app.controller('auditListController', function($scope, $compile){
html = "";
$compile(angular.element(html).contents())($scope);
$scope.myfunction = function (myvar) {
console.log("myvar", myvar);
}
}