Home
Tutorials
Microsoft Technologies Tutorials
Java Programming Tutorials
Web Designing Tutorials
Script Programming Tutorials
Database Programming Tutorials
Mobile Technologies Tutorials
Other Programming Tutorials
Examples
Articles
Tools
News
AngularJS Filter (Search) Table Example
Keywords : Angularjs filter list example, Angularjs search filter example, Angularjs filter function example, Angularjs custom filter example, Angularjs filter table data example
Example
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> AngularJs filter Example </title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script> <script> var app = angular.module("AngularfilterApp", []); app.controller("filterctrl", function ($scope) { $scope.users = [{ name: "Madhav Sai", age: 11 }, { name: "Suresh Dasari", age: 29 }, { name: "Rohini Alavala", age: 29 }, { name: "Praveen Kumar", age: 24 }]; }); </script> </head> <body ng-app="AngularfilterApp"> <h2>AngularJS Filter Example</h2> <div ng-controller="filterctrl"> Enter Name to Filter:<input ng-model="searchtxt" type="text" placeholder="Flter key"> <table> <tr><th>Name</th><th>Age</th></tr> <tr ng-repeat="user in users | filter : searchtxt"> <td>{{user.name}}</td> <td>{{user.age}}</td> </tr> </table> </div> </body> </html>
Click Here to See Result
Result
Previous
Next