JavaScript - Merge Two Columns Using AngularJS
Submitted by razormist on Thursday, September 19, 2019 - 13:05.
In this tutorial we will create a Merge Two Columns Using AngularJS. This code will merge a table column when user click the toggle button The code use AngularJS directives to call a specific function that merge two columns in table by binding the columns with ng-show, and alternately ng-hide. 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.
There you have it we successfully created a Merge Two Columns 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="container-fluid">
- </div>
- </nav>
- <div class="col-md-6 well">
- <hr style="border-top:1px dotted #ccc;"/>
- <div class="col-md-8">
- <table class="table table-bordered">
- <thead class="alert-info">
- <tr>
- </tr>
- </thead>
- <tbody style="background-color:#fff;">
- <tr ng-repeat="member in members">
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </body>
- </html>
Creating the Main Function
This code contains the main function of the application. This code will merge the table column 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 inside the js directory.- var app = angular.module("myModule", [])
- .controller("myController", function($scope){
- var members = [
- {firstname: "Angelo", lastname: "Borg", age: "35", address: "Hong Kong"},
- {firstname: "Jason", lastname: "Smith", age: "20", address: "New York"}
- ];
- $scope.members = members;
- $scope.content = undefined;
- $scope.contentToggle = function(name){
- if ($scope.isContentToggled(name)){
- $scope.content = undefined;
- } else {
- $scope.content = name;
- }
- }
- $scope.isContentToggled = function (name){
- return $scope.content == name;
- }
- });
Add new comment
- 164 views