我正在尝试使用 NGX-DataTable 的过滤选项(此处为文档,此处为演示)并尝试重写代码的 ViewChild 部分,因为我将通过变量“config”将表格动态传递给对话框组件,因此我可以搜索“采购订单”栏。
我可以让表格按采购订单列过滤,但有两个问题:
我无法通过在输入中删除来撤消过滤。
例如:如果我默认有10个结果,然后输入“a”有4个结果,然后输入“aa”没有结果,即使我完全删除用于过滤的输入我仍然没有结果。当过滤器更新时,表格应该回到第一页,现在它只是停留在原来的位置。
任何指针将不胜感激!
因此,到目前为止,我在对话框组件中拥有通过变量 config 传入的表信息:
对话框组件中的 HTML:
<input
type='text'
style='padding:8px;margin:15px auto;width:30%;'
placeholder='Type to filter the name column...'
autofocus
(keyup)='updateFilter($event)'
/>
<ngx-datatable
class='material'
#table
[rows]='config.rows'
[columns]="config.columns"
[columnMode]="'standard'"
[headerHeight]="75"
[footerHeight]="50"
[scrollbarH]="true"
[rowHeight]="'auto'"
[limit]="5"
[selectionType]="'multiClick'"
>
</ngx-datatable>
TS:
import { Component, OnInit } from '@angular/core';
import { MdDialog, MdDialogRef } from '@angular/material';
import { KeysPipe} from '../keys.pipe';
@Component({
selector: 'app-dialog-table',
templateUrl: './dialog-table.component.html',
styleUrls: ['./dialog-table.component.css']
})
export class DialogTableComponent implements OnInit {
config: any;
columns: any;
table = {
offset: 0,
};
temp = [];
constructor(public dialogRef: MdDialogRef<DialogTableComponent>) {
}
updateFilter(event) {
const val = event.target.value;
this.temp = [...this.config.rows];
// filter our data
const temp = this.temp.filter(function(d) {
return d.purchaseOrder.indexOf(val) !== -1 || !val;
});
// update the rows
this.config.rows = temp;
// Whenever the filter changes, always go back to the first page
this.table.offset = 0;
}
ngOnInit() {
}
}