You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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-tablemodel="rows"><header-rowng-repeat="col in columns" sortable="{col.sortable}">
{{col.label}}
</header-row><row><columnng-repeat="col in columns">{{row[col.name]}}</column></row></angular-table>
The text was updated successfully, but these errors were encountered:
Great, thanks. I've fallen back to hacking dataTables into a directive for now, but I'll definitely revisit angular-table if this is fixed. Thanks for the quick response.
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.,The text was updated successfully, but these errors were encountered: