JavaScript - Simple Change Template Using AngularJS
Submitted by razormist on Saturday, May 11, 2019 - 17:08.
In this tutorial we will create a Simple Change Template Using AngularJS. This code will change the current template when the user select a value the in the dropdown box. The code itself use a angular directives that can fetch an external html code in order to change the current template in the web page. 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.
employee_table.html
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"s>
- <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">
- <div class = "form-inline">
- <select class = "form-control" ng-model = "viewData">
- </select>
- </div>
- <br />
- </div>
- </div>
- </body>
- </html>
Creating the Main Function
This code contains the main function of the application. This code will change the current template when the use select an option in the dropbox. To do this just copy and write these block of codes as shown below inside the text editor and save it as shown below. script.js Note: Make sure you save this file inside the js directory to make the application work.- var app = angular.module("myModule", [])
- .controller("myController", function($scope){
- var employees = [
- {name: "Tony Stark", age: "42", address: "New York"},
- {name: "Steve Rogers", age: "36", address: "Nazi"},
- {name: "Natasha Romanof", age: "28", address: "Berlin"},
- {name: "Bruce Banner", age: "35", address: "London"},
- {name: "Thor Odinson", age: "89", address: "Asgard"}
- ];
- $scope.employees = employees;
- $scope.viewData = "employee_list.html";
- });
employee_list.html
There you have it we successfully created a Simple Change Template 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
- 58 views