-
Notifications
You must be signed in to change notification settings - Fork 848
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Table heading icons. #89
Comments
You can override the heading for a column by setting the "header" attribute with the id of a template <table ng-table="tableParams">
<tr ng-repeat="user in users">
<td header="'header.html'">{{ user.name }}</td>
<td title="other">{{ user.other }}</td>
</tr>
</table>
<script type="text/ng-template" id="header.html">
<i class="icon-user"></i> User
</script> |
I planned create feature when user can define own header in table without templates |
+1 Yes please |
Also Vitalii It would be great if you could keep the support for IE8. |
I couldn't find any reference in the docs to a way to add icons to the
<TH>
elements.Is this currently possible?
The text was updated successfully, but these errors were encountered: