ngx-datatable 页脚自定义
ngx-datatable footer customize
如何自定义ngx数据表。我无法找到我必须在哪里更改代码以删除记录总数并将其替换为下拉列表以显示每页的项目。我的分页也缺少一些图标。
使用自定义页脚模板(参考下面的 link)。所以它会覆盖默认页脚。
https://github.com/swimlane/ngx-datatable/blob/master/demo/basic/footer.component.ts
例子
如果您只想去掉页脚,只需使用:
<ngx-datatable-footer></ngx-datatable-footer>
如果要自定义:
<ngx-datatable-footer>
<ng-template
ngx-datatable-footer-template
let-rowCount="rowCount"
let-pageSize="pageSize"
let-selectedCount="selectedCount"
let-curPage="curPage"
let-offset="offset"
>
<div style="padding: 5px 10px">
<div><strong>Summary</strong>: Gender: Female</div>
<hr style="width:100%" />
<div>
Rows: {{ rowCount }} | Size: {{ pageSize }} | Current:
{{ curPage }} | Offset: {{ offset }}
</div>
</div>
</ng-template>
</ngx-datatable-footer>
但如果您只想更改 "total" 或 "no items found" 则覆盖消息 属性:
//Static messages in the table you can override for localization.
{
// Message to show when array is presented
// but contains no values
emptyMessage: 'No data to display',
// Footer total message
totalMessage: 'total'
}
https://swimlane.gitbooks.io/ngx-datatable/api/table/inputs.html
如何自定义ngx数据表。我无法找到我必须在哪里更改代码以删除记录总数并将其替换为下拉列表以显示每页的项目。我的分页也缺少一些图标。
使用自定义页脚模板(参考下面的 link)。所以它会覆盖默认页脚。
https://github.com/swimlane/ngx-datatable/blob/master/demo/basic/footer.component.ts
例子
如果您只想去掉页脚,只需使用:
<ngx-datatable-footer></ngx-datatable-footer>
如果要自定义:
<ngx-datatable-footer>
<ng-template
ngx-datatable-footer-template
let-rowCount="rowCount"
let-pageSize="pageSize"
let-selectedCount="selectedCount"
let-curPage="curPage"
let-offset="offset"
>
<div style="padding: 5px 10px">
<div><strong>Summary</strong>: Gender: Female</div>
<hr style="width:100%" />
<div>
Rows: {{ rowCount }} | Size: {{ pageSize }} | Current:
{{ curPage }} | Offset: {{ offset }}
</div>
</div>
</ng-template>
</ngx-datatable-footer>
但如果您只想更改 "total" 或 "no items found" 则覆盖消息 属性:
//Static messages in the table you can override for localization.
{
// Message to show when array is presented
// but contains no values
emptyMessage: 'No data to display',
// Footer total message
totalMessage: 'total'
}
https://swimlane.gitbooks.io/ngx-datatable/api/table/inputs.html