JavaScript - Move Data To Other Table Using AngularJS
Submitted by razormist on Thursday, September 12, 2019 - 20:44.
In this tutorial we will create a Move Data To Other Table Using AngularJS. This code will dynamically move the targeted data when the user click the move button. The code itself use a AngularJS directives that can move a data by setting the array index position as a parameter in the moveMember(), then it will automatically push the data into a new object and instantly remove it afterwards. 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.
There you have it we successfully created a Move Data To Other Table 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!!
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.- <!DOCTYPE html>
- <html lang="en" ng-app="myModule">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
- </head>
- <body ng-controller="myController">
- <nav class="navbar navbar-default">
- <div class="containet-fluid">
- </div>
- </nav>
- <div class="col-md-6 well">
- <hr style="border-top:1px dotted #ccc;"/>
- <div class="col-md-6">
- <table class="table table-bordered">
- <thead class="alert-info">
- <tr>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="member in members">
- </tr>
- </tbody>
- </table>
- </div>
- <div class="col-md-6">
- <table class="table table-bordered">
- <thead class="alert-info">
- <tr>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="member in members2">
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </body>
- </html>
Creating the Main Function
This code contains the main function of the application. This code move a data 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.- var app = angular.module("myModule", [])
- .controller("myController", function($scope){
- $scope.members = [
- {name: "John Smith", address: "New York"},
- {name: "Claire Temple", address: "Racoon City"},
- {name: "Jack Froze", address: "Iceland"},
- {name: "George Flame", address: "Fireland"}
- ];
- $scope.members2 = [];
- $scope.moveMember = function(member){
- $scope.members2.push(member);
- $scope.members.splice($scope.members.indexOf(member), 1);
- };
- });
Add new comment
- 81 views