AngularJS

AngularJS Directives

AngularJS Filters and Elements

AngularJS Tutorials

AngularJS Tables

Tables in AngularJS

 

 

The ng-repeat directive is perfect for displaying tables. 

 

Uses of Table:-

 

  • Tables are used for displaying data in tabular form
  • Easily understood by the user
  • Easy to display
  • Can be understood by the less educated users

 

Syntax:-

 

< element ng-repeat="expression" >< /element >

 

Further Explanation:-

 

Value Description
expression

An expression that specifies how to loop the collection.
Legal Expression examples:

  1. in records
  2. (key, value) in myObj
  3. in records track by $id(y)

Code Explanation

All Tutorials related to AngularJS Tutorials

All Sections related to AngularJS