AngularJs Tables : Tables in AgularJs are created using the ng-repeat directives. You can create tables and add
css styles to them.
AngularJs Tables : Syntax
Example
......
|
Example
<div ng-app="userApp" ng-controller="userController"> <table> <tr><th>Id</th><th>Name</th></tr> <tr ng-repeat="data in usersData"> <td>{{data.id}}</td> <td>{{data.name}}</td> </tr> </table> </div> |
Add Css In Table
You can add css directly in table tr and td tags or you can add it by adding custom classes.