Trying to render my datatable as text using " render: $.fn.dataTable.render.text() " to avoid running scripts within the table.
The datatable pulls data from the angularjs scope and runs in the angular controller.
Here is the code to define the datatable:
$scope.dt=angular.element('#allUsers').DataTable({
data: $scope.allUsersDTData
});
How can I get the render to work in the angular controller?