Hello I have a datatable that is filled with data from a query, after filling the table with the data I drawCallback (datatables) with which I create a row (row) as a grouping (Example Image)
The problem is that in the title of each row I have a checkbox which has the angular ng-click associated with it but for some reason that I do not know the ng-ckick does not work. I was investigating and I found the following code:
.withOption('createdRow', function(row, data, dataIndex){
$compile(angular.element(row).contents())($scope);
})
Which did not work, does anyone have any idea what it could be? Thanks