fix gallery view sort drop down empty values (#2990)

restore recent in main pace
trashcan example demo shell add multi select
This commit is contained in:
Eugenio Romano
2018-02-23 17:37:15 +00:00
committed by GitHub
parent 69fd016d32
commit 8f471d8beb
12 changed files with 109 additions and 66 deletions

View File

@@ -33,7 +33,7 @@
</div>
<mat-form-field *ngIf="cardview">
<mat-select [value]="getSortingKey()">
<mat-option *ngFor="let col of data.getColumns()"
<mat-option *ngFor="let col of getSortableColumns()"
[value]="col.key"
(click)="onColumnHeaderClick(col)"
(keyup.enter)="onColumnHeaderClick(col)">

View File

@@ -524,6 +524,12 @@ export class DataTableComponent implements AfterContentInit, OnChanges, DoCheck
return null;
}
getSortableColumns() {
return this.data.getColumns().filter((currentColum) => {
return currentColum.sortable === true;
});
}
private emitRowSelectionEvent(name: string, row: DataRow) {
const domEvent = new CustomEvent(name, {
detail: {