Angularjs table sorting:
An orderBy filter is used to sort an Angularjs table. An orderBy is an angularjs filter which is used to orders or sort an array by an expression.
Syntax:
{{ expression | orderBy }} |
Example explanation:
The ng-app directive initializes the application. We create a students object which is initialized by ng-init directive using JSON syntax. The ng-repeat directive will work as for-each loop and iterates over students object. The orderBy filter sort the data by student name.
Example:
<html> <head> <title>AngularJS Table Sorting Example</title> <script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"> </script> <style> table, th , td { border: 1px solid grey; border-collapse: collapse; padding: 5px; } table tr:nth-child(odd) { background-color: #f2f2f2; } table tr:nth-child(even) { background-color: #ffffff; } </style> </head> <body> <h1>AngularJS Table Sorting Example.</h1> <div ng-app = "" ng-init = "students=[{name:'Prabhjot',country:'US'}, {name:'Nidhi',country:'Sweden'}, {name:'Kapil',country:'India'}]" > <p>Students with country name:</p> <table> <tr> <th>Name</th> <th>Country</th> </tr> <tr ng-repeat = "student in students | orderBy : 'name'"> <td>{{ student.name }}</td> <td>{{ student.country }}</td> </tr> </table> </div> </body> </html> |