1
を添加していないが、何かが間違っていた、コードはカスタマイズアクションNG2-スマートテーブルを追加しますが、何のアクションは、私がカスタマイズアクションを作成しようとしている
マイ設定私にカスタムアクションボタンを与えられていない、私はアクション内のカスタムボタンを追加しました:
settings = {
actions: {
edit: false,
custom: [
{
name: 'routeToAPage',
title: `<i class="ion-person" title="Xem thông tin người nhận Giftcode"></i>`
}
],
},
add: {
addButtonContent: '<i class="ion-ios-plus-outline"></i>',
createButtonContent: '<i class="ion-checkmark"></i>',
cancelButtonContent: '<i class="ion-close"></i>',
confirmCreate: true
},
columns: {
stt: {
title: 'STT',
editable: false,
},
},
pager : {
display : true,
perPage: 10
}
};
私のHTMLコード:
<ba-card class="smart-table-container">
<ng2-smart-table
[settings]="settings"
[source]="source"
(deleteConfirm)="onDeleteConfirm($event)"
(custom)="onCustom($event)"
></ng2-smart-table>
</ba-card>
私の問題は何ですか?
ありがとうございます!