avoid filtering by sorting fields
This commit is contained in:
parent
f759784262
commit
3068e874b7
1 changed files with 1 additions and 4 deletions
|
@ -65,9 +65,6 @@ export class CorTableComponent implements OnChanges {
|
|||
columnMap[col.datafield] = col;
|
||||
});
|
||||
|
||||
const filterCols = this.columns.filter(col => !!col.sortfield)
|
||||
.map(col => col.datafield);
|
||||
|
||||
const numericCols = this.columns.filter(col => col.isNumeric())
|
||||
.map(col => col.datafield);
|
||||
|
||||
|
@ -81,6 +78,6 @@ export class CorTableComponent implements OnChanges {
|
|||
return item;
|
||||
});
|
||||
|
||||
this.orderedData = this.tableService.buildOrderedItems(processed, this.options, filterCols, numericCols);
|
||||
this.orderedData = this.tableService.buildOrderedItems(processed, this.options, this.filterFields, numericCols);
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue