So going through many times here and there didn't achieve the best of things but learned a lot.
This is the very basic thing that I produced up to now. This explains the dynamic nature of how views changes when the model changes.
Here the {{typeone}} will change dynamically with the things type in the input box.
This is the very basic thing that I produced up to now. This explains the dynamic nature of how views changes when the model changes.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <!DOCTYPE html> <html ng-app> <head lang="en"> <meta charset="UTF-8"> <title>Testing Angular</title> <script src="bower_components/angular/angular.js"></script> <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css"> <link rel="stylesheet" href="css/app.css"> <script src="js/controllers.js"></script> </head> <body> <div style="padding-left: 100px"> <input ng-model="typeone"/> </div> <div style="padding-left: 100px"> {{typeone}} </div> </body> </html> |
Here the {{typeone}} will change dynamically with the things type in the input box.
something like this. With this DayOne of AngularJs finishes.