Open
Description
Hi @dhilt ,
was wondering if there is a workaround on using directive on table instead of div. Something like :
<tbody class="viewport" [style.height.px]="800" *ngIf="datasource">
<tr *uiScroll="let rows of datasource">
<td *ngFor="let column of objectKeys(rows)">{{rows[column]}}</td>
</tr>
</tbody>
Currently it's not working properly as it wraps each record in <div data-sid="XYZ">
This would be really awesome if it could work with tables 😄
Cheers!