angularプロジェクトでng2-smart-tableを使用していますが、期待どおりに機能しています。各行に行番号を表示する方法を知りたいだけです。Google のドキュメントと例から、私が考えることができるのは、データ itslef にプロパティを設定することだけです。これは良い考えではありません。何か方法や回避策があれば、提案してください。これが私のデータ設定であり、私のng2-smart-tableへのサンプルデータです
settings2 = {
columns: {
id: {
title: 'ID',
filter: true,
},
name: {
title: 'Fact',
filter: true,
},
description: {
title: 'Description',
filter: true,
},
},
actions: {
add: false,
edit: false,
delete: false,
custom: [
{
name: 'view',
title: `<i class="ti-eye text-success m-r-10" data-target="#view"></i>`,
},
{
name: 'edit',
title: `<i class="ti-pencil text-info m-r-10" data-target="#update"></i>`,
},
{
name: 'delete',
title: `<i class="ti-trash text-danger m-r-10"></i>`
},
]
}
}
データ -
[{
"id": "770e6370-cf14-4a0a-b9db-0a6e99b5783b" ,
"list": [
{
"description": "Coopentity" ,
"type": "CO_OP"
} ,
{
"description": "" ,
"type": "FARM"
} ,
{
"description": "" ,
"type": "FACTORY"
} ,
{
"description": "" ,
"type": "AUDITING_FIRM"
}
] ,
"name": "entity_types"
}]
HTML -
<ng2-smart-table [settings]="settings2" [source]="facts" (custom)="onCustom($event)" class=""></ng2-smart-table>