I've been trying to make datatables work with angular and i'm stuck . It's a mess.
$scope.dtOptions = DTOptionsBuilder.fromSource('/analyzer/List');
$scope.dtColumns = [
DTColumnBuilder.newColumn('BuildName').withTitle('Name'),
DTColumnBuilder.newColumn('Total').withTitle('Total'),
DTColumnBuilder.newColumn('Passed').withTitle('Passed'),
DTColumnBuilder.newColumn('Failed').withTitle('Failed')
];
It is making the call but not filling the table. The header is coming but not the body of the table.
Here's the data - {"responseCode":0,"responseData":[{"Name":"Rob","Total":6273,"Passed":5874,"Failed":399}]}