In other words, a logic behind AngularJS View and AngularJS Models In this article, we’ll see the behavior and usage of controllers in AngularJS. It controls/manipulates data in AngularJS applications. These are nothing but regular JavaScript Objects created by standard JavaScript object constructor. The main aspect which controls AngularJS is controllers…
What is AngularJS API and Include
AngularJS API API is a short form of Application Programming Interface. AngularJS provides a set of APIs to use in AngularJS application. These APIs are called as Global API. We can access these APIs using angular object. Most commonly used Global API functions are listed below: lowercase() It converts string…
What are AngularJS Events
As same as JavaScript, AngularJS has its own HTML events directives. We can add one or more AngularJS Event listeners to HTML element using directives. Below is a list of AngulaJS event listener directives. ng-blur ng-change ng-click ng-copy ng-cut ng-dblclick ng-focus ng-keydown ng-keypress ng-keyup ng-mousedown ng-mouseenter ng-mouseleave ng-mousemove ng-mouseover ng-mouseup…
What is AngularJS SQL
Sometimes, we need to display information on the web page dynamically. There may be the cases when data is being collected on regular or irregular intervals. In those situations, data is fetched from third party locations in form of interoperable notations using exposed services. Now the question is “Does AngularJS…
What are AngularJS Tables
Sometimes a concept can be explained such a very complex way that listeners shall think it seems to very tough and may require more attention and study. But it is not correct! Everything can be explained and understand in easy way, which creates an image in listener’s mind that is…
What is AngularJS Services
AngularJS Service is basically a function or object, which has scope at maximum AngularJS application level only. There are almost 30 built-in services. Few of them are replacement of legacy JavaScript functions. As soon as we go through this article, we’ll see the usage, application and history of AngularJS services…
What is AngularJS Filters
AngularJS Filters are used to convert format or we can say transformation of data which is being displayed on the web page. There are various types of filters. Few filters are listed below: Currency Sometimes we need that currency number should be displayed in currency format which falls under…
What is AngularJS Models
Introduction This article demonstrates nature and behavior of an AngularJS directive ng-model and starts with introduction of this directive. After that, we’ll understand it using a set of examples. At last but not least, it’s two way behavior. The ng-model Directive The ng-model directive binds HTML control value to AngularJS…
What is AngularJS Directives
AngularJS Directives are used to change or control the behavior of HTML elements. We can modify inner text, inner html. This is also used to limit the functionalities of HTML elements. These are nothing but extended attributes of HTML, prefixed with ng-. We can define our own custom directives as…
What is AngularJS Modules
Using AngularJS Modules, you can control functionalities and behavior if AngularJS application with the help of Controllers and Directives. These terms may be create curiosity at this moment which is really important but we’ll cover controllers and directives in other blogs. Let’s have a look on Modules as of now.…