JavaScript - Simple Data Filter Using AngularJS

In this tutorial we will create a Simple Data Filter Using AngularJS. This code will filter any data that have been inputted by the user. The code itself use AngularJS directives that has a built-in filter function by just adding a filter function with a ng-model value in the ng-repeat table. This a user-friendly program feel free to modify and use it to your system. We will be using AngularJS as a framework which has additional custom HTML attributes embedded into it. It can interprets those attributes as directives to bind inputted parts of the page to a model that represent as a standard JavaScript variables.

Getting Started:

First you have to download Bootstrap, this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/. And, this is the link for the AngularJS https://angularjs.org/.

Creating The Interface

This is where we will create a simple form for our application. To create the forms simply copy and write it into you text editor, then save it index.html.
  1. <!DOCTYPE html>
  2. <html lang="en" ng-app="myModule">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6.         </head>
  7. <body ng-controller="myController">
  8.         <nav class="navbar navbar-default">
  9.                 <div class="container-fluid">
  10.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  11.                 </div>
  12.         </nav>
  13.         <div class="col-md-3"></div>
  14.         <div class="col-md-6 well">
  15.                 <h3 class="text-primary">JavaScript - Simple Data Filter Using AngularJS</h3>
  16.                 <hr style="border-top:1px dotted #ccc;"/>
  17.                 <div class="form-inline pull-right">
  18.                         <input type="text" class="form-control" ng-model="filter" placeholder="Search here..."/>
  19.                 </div>
  20.                 <br />
  21.                 <br />
  22.                 <table class="table table-bordered">
  23.                         <thead class="alert-info">
  24.                                 <tr>
  25.                                         <th>Firstname</th>
  26.                                         <th>Lastname</th>
  27.                                         <th>Gender</th>
  28.                                 </tr>
  29.                         </thead>
  30.                         <tbody>
  31.                                 <tr ng-repeat="member in members | orderBy: 'lastname' | filter: filter">
  32.                                         <td>{{member.firstname}}</td>
  33.                                         <td>{{member.lastname}}</td>
  34.                                         <td>{{member.gender}}</td>
  35.                                 </tr>
  36.                         </tbody>
  37.                 </table>
  38.         </div>
  39. <script src="js/angular.js"></script>  
  40. <script src="js/script.js"></script>   
  41. </body>
  42. </html>

Creating the Main Function

This code contains the main function of the application. This code will automatically filter any data that have been inputted. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js inside the js directory.
  1. var app = angular.module("myModule", [])
  2.                                         .controller("myController", function($scope){
  3.                                                 var members = [
  4.                                                         {firstname: "John", lastname: "Smith", gender: "Male"},
  5.                                                         {firstname: "Johhny", lastname: "Sins", gender: "Male"},
  6.                                                         {firstname: "Claire", lastname: "Temple", gender: "Female"}
  7.                                                 ];
  8.                                                
  9.                                                 $scope.members = members;
  10.                                         });
There you have it we successfully created a Simple Data Filter using AngularJS. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!!

Add new comment