JavaScript - Filtering Entry Using AngularJS

In this tutorial we will create a Filtering Entry using AngularJS. This code will filter entries of data inside the html table when user submit the input form. The code use angular directives to filter an entry data by binding the textbox in ng-model and adding the filter function in the ng-repeat with the same value as the model. 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 will need to download & install the AngularJS here's the link https://angularjs.org/. And this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

Creating the Main Interface

This code contains the interface of the application. This code will render application and display the form. To do that just kindly write these block of code inside the text editor and save it as 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="containet-fluid">
  10. <a class="navbar-brand" href="https://www.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 - Filtering Entry Using AngularJS</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <div class="col-md-4">
  18. <form>
  19. <div class="form-group">
  20. <label>Firstname</label>
  21. <input type="text" class="form-control" ng-model="newMember.firstname"/>
  22. </div>
  23. <div class="form-group">
  24. <label>Lastname</label>
  25. <input type="text" class="form-control" ng-model="newMember.lastname"/>
  26. </div>
  27. <div class="form-group">
  28. <label>Address</label>
  29. <input type="text" class="form-control" ng-model="newMember.address"/>
  30. </div>
  31.  
  32. <center><button type="button" class="btn btn-primary" ng-click="saveMember()"><span class = "glyphicon glyphicon-save"></span> Save</button></center>
  33. </form>
  34. </div>
  35. <div class="col-md-8">
  36. <div class="form-inline">
  37. <input type="text" class="form-control" ng-model="searchBox"/>
  38. <button class="btn btn-success" ng-click="search=searchBox">Search</button>
  39. </div>
  40. <br />
  41. <table class="table table-bordered">
  42. <thead class="alert-info">
  43. <tr>
  44. <th>Firstname</th>
  45. <th>Lastname</th>
  46. <th>Address</th>
  47. </tr>
  48. </thead>
  49. <tr ng-repeat="member in members|filter: search">
  50. <td>{{member.firstname}}</td>
  51. <td>{{member.lastname}}</td>
  52. <td>{{member.address}}</td>
  53. </tr>
  54. </tbody>
  55. </table>
  56. </div>
  57. </div>
  58.  
  59. </body>
  60. <script src="js/angular.js"></script>
  61. <script src="js/script.js"></script>
  62. </html>

Creating the Script

This code contains the main function of the application. This code will filter entries when the user submit the input form. To that just kindly copy and write these block of codes inside the text editor, then save it inside the js directory as script.js.
  1. var app = angular.module("myModule", [])
  2. .controller("myController", function($scope){
  3.  
  4. $scope.newMember = {};
  5. $scope.clickedMembers = [];
  6.  
  7.  
  8. $scope.members = [];
  9.  
  10. $scope.saveMember = function(){
  11. $scope.members.push($scope.newMember);
  12. $scope.newMember = {};
  13. };
  14.  
  15. });
There you have it we successfully created a Filtering Entry using AngularJS. I hope that this very 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