この例に完全に従っていますが、サーバー側の処理を使用して描画しているデータテーブルのボタンをレンダリングできません。コードは次のとおりです。
vm.dtOptions = DTOptionsBuilder.newOptions()
.withOption('ajax', {
type: 'POST',
url: /my/api/here,
headers: {
'Authorization': 'Basic blah12345'
},
dataSrc: function(resp){
var data = resp.data;
data.forEach(function(el){
//moment.js
if(el.process_date){
el.process_date = moment(el.process_date).format("MMM D YYYY, h:mm a");
}else{
el.process_date = "N/A"
}
if(el.event_date){
el.event_date = moment(el.event_date).format("MMM D YYYY, h:mm a");
}else{
el.event_date = "N/A"
}
//------------------------------------------------------------------------
if(el.description === null || !el.description){
el.description = "N/A";
}
});
return data;
}
})
.withDOM('Bfrtip') // I have tried dif options here from other examples
.withDataProp('data')
.withOption('serverSide', true)
.withOption('processing', true)
.withOption('order', [[0, 'desc']])
.withPaginationType('full_numbers')
.withButtons([
'columnsToggle',
'colvis',
'copy',
'print',
'excel',
{
text: 'Some button',
key: '1',
action: function (e, dt, node, config) {
alert('Button activated');
}
}
]);
vm.dtColumns = [
DTColumnBuilder.newColumn('event_date').withTitle('Event Date'),
DTColumnBuilder.newColumn('process_date').withTitle('Process Date'),
DTColumnBuilder.newColumn('reason').withTitle('Reason'),
DTColumnBuilder.newColumn('description').withTitle('Description'),
DTColumnBuilder.newColumn('amount').withTitle('Amount')
.renderWith(function(data, type, full) {
return $filter('currency')(data, '$', 2)
}),
DTColumnBuilder.newColumn('balance').withTitle('Balance')
.renderWith(function(data, type, full) {
return $filter('currency')(data, '$', 2)
}),
DTColumnBuilder.newColumn('id').withTitle('Sequence'),
];
ここでは、テーブルで $state を移動する前に依存関係を解決します。
.state('app', {
url: '/app',
abstract: true,
templateUrl: helper.basepath('app.html'),
resolve: helper.resolveFor( 'moment','datatables', 'datatables.buttons')
})
これは、テーブルをレンダリングするために使用している HTML です。
<div class="panel panel-default">
<div class="panel-body">
<div>
<table datatable="" dt-options="fundsCtrl.dtOptions" dt-columns="fundsCtrl.dtColumns" dt-instance="fundsCtrl.dtInstance" class="row-border hover row-border hover"></table>
</div>
</div>
</div>
angular-datatables docs の例で気づいたのですが、css ファイルも含まれていました。
<link rel="stylesheet" href="vendor/datatables-buttons/css/buttons.dataTables.css">
これはデータテーブルのドキュメントから掘り起こし、index.html に含めましたが、私の目的にはあまり役立ちませんでした。
どんな助けでも大歓迎です!: )
どうもありがとうございました。返信をお待ちしております