This may be outside of the scope of the component, but the data for my tables is heavily dynamic, and I don't know how many columns I'll have up-front, or indeed, anything else about them. As far as I can tell, there's no way to use ng-repeat to build the column header and row data information; e.g.,
<angular-table model="rows">
<header-row ng-repeat="col in columns" sortable="{col.sortable}">
{{col.label}}
</header-row>
<row>
<column ng-repeat="col in columns">{{row[col.name]}}</column>
</row>
</angular-table>
This may be outside of the scope of the component, but the data for my tables is heavily dynamic, and I don't know how many columns I'll have up-front, or indeed, anything else about them. As far as I can tell, there's no way to use
ng-repeatto build the column header and row data information; e.g.,