JavaScript - Remove Row With Modal Using AngularJS

In this tutorial we will create a Remove Row With Modal Using AngularJS. This code will dynamically remove table row when the user click the delete button. The code use angular directives that will remove a table row in a modal confirmation box and set an id as a parameter in selectMember(), then it will delete the set array index in the deleteMember(). This a user-friendly program feel free to modify and use it to your system. We will be using AngularJS as a comprehensive JavaScript framework that extend the browser capabilities. It handles the heavy lifting of DOM manipulation and AJAX request in a whole.

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="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 - Remove Row With Modal Using AngularJS</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <div class="col-md-4">
  18. <div class="form-group">
  19. <label>Firstname</label>
  20. <input type="text" class="form-control" ng-model="newMember.firstname"/>
  21. </div>
  22. <div class="form-group">
  23. <label>Lastname</label>
  24. <input type="text" class="form-control" ng-model="newMember.lastname"/>
  25. </div>
  26. <div class = "form-group">
  27. <label>Address</label>
  28. <input type="text" class="form-control" ng-model="newMember.address"/>
  29. </div>
  30. <center><button class="btn btn-primary" ng-click = "saveMember()">Save</button></cente>
  31. </div>
  32. <div class="col-md-8">
  33. <table class="table table-bordered">
  34. <thead class="alert-info">
  35. <tr>
  36. <th>Firstname</th>
  37. <th>Lastname</th>
  38. <th>Address</th>
  39. <th>Action</th>
  40. </tr>
  41. </thead>
  42. <tr ng-repeat="member in members">
  43. <td>{{member.firstname}}</td>
  44. <td>{{member.lastname}}</td>
  45. <td>{{member.address}}</td>
  46. <td><button type="button" data-toggle="modal" data-target="#delete_member" ng-click = "selectMember(member)" class="btn btn-sm btn-danger"><span class="glyphicon glyphicon-trash"></span> Delete</button></td>
  47. </tr>
  48. </tbody>
  49. </table>
  50. </div>
  51.  
  52. </div>
  53.  
  54. <div class="modal fade" id="delete_member" aria-hidden="true">
  55. <div class="modal-dialog">
  56. <div class="modal-content">
  57. <form>
  58. <div class="modal-body">
  59. <center><h4 class="text-danger">Are you sure you want to remove this row?</h4></center>
  60. </div>
  61. <div class="modal-footer">
  62. <button class="btn btn-danger" data-dismiss="modal" ng-click="deleteMember()"><span class="glyphicon glyphicon-check"></span> Yes</button>
  63. <button class="btn btn-default" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> No</button>
  64. </div>
  65. </form>
  66. </div>
  67. </div>
  68. </div>
  69. </body>
  70. <script src="js/angular.js"></script>
  71. <script src="js/script.js"></script>
  72. <script src="js/jquery-3.2.1.min.js"></script>
  73. <script src="js/bootstrap.js"></script>
  74. </html>

Creating the Main Function

This code contains the main function of the application. This code remove table row when the button is clicked. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js.
  1. var app = angular.module("myModule", [])
  2. .controller("myController", function($scope){
  3.  
  4. $scope.newMember = {};
  5.  
  6. $scope.members = [];
  7.  
  8. $scope.saveMember = function(){
  9. $scope.members.push($scope.newMember);
  10. $scope.newMember = {};
  11. };
  12.  
  13. $scope.selectMember = function(member){
  14. $scope.selectedMember = member;
  15. };
  16.  
  17. $scope.deleteMember = function(){
  18. $scope.members.splice($scope.members.indexOf($scope.selectedMember), 1);
  19. };
  20. });
There you have it we successfully created a Remove Row With Modal 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