Difference between revisions of "AngularJS"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External links)
Line 10: Line 10:
  
 
The values of those JavaScript variables can be manually set within the code, or retrieved from static or dynamic JSON resources.
 
The values of those JavaScript variables can be manually set within the code, or retrieved from static or dynamic JSON resources.
 +
 +
== TreeView ==
 +
 +
See:
 +
 +
* [http://ngmodules.org/modules/angular.treeview Angular Treeview] @ ngmodules.org
 +
* [https://angular-ui-tree.github.io/angular-ui-tree AngularJS UI Tree] @ github.io
 +
* [http://stackoverflow.com/questions/11854514/is-it-possible-to-make-a-tree-view-with-angular Is it possible to make a Tree View with Angular?]
  
 
== See also ==
 
== See also ==

Revision as of 09:11, 29 May 2016

In software development, AngularJS (commonly referred to as "Angular") is an open source web application JavaScript framework for developing single-page applications.

Description

AngularJS simplifies both the development and the testing of web applications by providing a framework for client-side Model–view–controller (MVC) architecture, along with components commonly used in rich Internet applications.

AngularJS works by first reading the HTML page, which has embedded into it additional custom tag attributes.

Angular interprets those attributes as directives to bind input or output parts of the page to a model that is represented by standard JavaScript variables.

The values of those JavaScript variables can be manually set within the code, or retrieved from static or dynamic JSON resources.

TreeView

See:

See also

External links