avoid filtering by sorting fields

This commit is contained in:
alecmerdler 2017-05-25 12:47:02 -07:00
parent f759784262
commit 3068e874b7

View file

@ -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);
}
}