Css class names for custom document columns

refs #51
This commit is contained in:
Denys Vuika
2016-05-04 10:11:37 +01:00
parent 0b1b87063c
commit 548fb14f4c
9 changed files with 15 additions and 5 deletions

View File

@@ -43,7 +43,7 @@
</td>
<!-- Name: folder -->
<td *ngIf="content.isFolder" class="mdl-data-table__cell--non-numeric folder-header-cell"
<td *ngIf="content.isFolder" class="mdl-data-table__cell--non-numeric folder-row-cell"
(click)="onItemClick(content, $event)">
<span class="content-header">
{{content.displayName}}
@@ -58,7 +58,7 @@
</td>
<!-- Custom columns -->
<td *ngFor="#col of columns" class="mdl-data-table__cell--non-numeric">
<td *ngFor="#col of columns" class="mdl-data-table__cell--non-numeric {{col.cssClass}}">
{{content[col.source]}}
</td>