我正在使用angular-datatables但是当我使用ng-repeat
时,数据表的功能不起作用(排序,搜索,计数等)
HTML:
<table datatable="" class="table table-striped table-bordered" cellspacing="0" width="100%">
<thead>
<tr>
<th><input type="checkbox" id="checkall" /></th>
<th>Navn</th>
<th>Projekt</th>
<th>Timer</th>
<th>Uge</th>
<th>Edit</th>
</tr>
</thead>
<tbody ng-repeat="timesheet in timesheets">
<tr>
<td><input type="checkbox" class="checkthis" /></td>
<td>{{timesheet.user}}</td>
<td>{{timesheet.projectid}}</td>
<td> <standard-time-no-meridian etime='timesheet.TotalTime'></standard-time-no-meridian></td>
<td>{{timesheet.week}}</td>
<td><p data-placement="top" data-toggle="tooltip" title="Edit"><button class="btn btn-primary btn-xs" data-title="Edit" data-toggle="modal" data-target="#edit" ><span class="glyphicon glyphicon-pencil"></span></button></p></td>
</tr>
</tbody>
</table>
JavaScript的:
.controller('TimesheetMainCtrl', function ($rootScope, $scope, $timeout) {
dpd.timesheetold.get(function (result, err) {
if (err) return console.log(err);
$timeout(function() {
$scope.timesheets = result;
})
})
});
我尝试将ng添加到datatable =“”但这只是给我一个控制台错误
TypeError:无法读取未定义的属性“serverSide” at Object.f [as fromOptions](angular-datatables.min.js:6)
答案 0 :(得分:1)
接缝是角度数据表中的错误 https://github.com/l-lin/angular-datatables/issues/439
将在0.51中修复,直到它运行旧版本