My first html page using the AngularJS
I have been using the jQuery JavaScript library for designing the interactive web pages from the last couple of years and I feel very familiar to update the DOM using the JQuery. Some month ago, one of...
View ArticleAngularJS- Example- Add values of the two text fields and show the sum
After writing my previous AngularJS html web page, I am continue to learn the AngularJS. Today I have found a on line editor Plunker for creating, collaborating and sharing my web development programs...
View ArticleAngularJS- What are the directives in AngularJS?
In previous examples, my first html web page using AngularJS and example to add the two text fields, you have noticed that we were using some keywords like ng-App and ng-Model in the examples to enable...
View ArticleAngularJS Example 2 – Create and display the maths times tables using ng-repeat
In the previous post: AngularJS- What are the directives in AngularJS?, we have discussed several AngularJS directives. In the following example, you can learn the real use of the ng-repeat directive....
View ArticleAngularJS: Starting with controller – display the maths times table
In the previous post AngularJS Example 2 – Create and display the maths times tables using ng-repeat we learnt to use the basics and ng-repeat directive to display the repeating html template. And now...
View ArticleAngularJS: How to filtering and order by in the Repeaters
In the previous post ‘starting with controller‘ we learnt how to create and use the controller and ng-repeat directive in the AngularJS template. In the post we will learn the filtering and order by...
View ArticleAngularJS: Example – Create table html element using ngRepeat
The following example shows how to draw a table element using the AngularJS ngRepeat.ControllerThe example contains the app.js controller and the html page.The Model ‘cities’ has the collection of the...
View ArticleAngularJS: Using if condition in ngRepeat directive
You know that you can apply the iteration on any html template using the ngRepeat over the collection. Let’s suppose that you have the collection of the city and countries name then you can generate...
View ArticleHow to apply class conditionally using ng-class in AngularJs
The ngClass directive gives you the ability to conditionally change CSS classes via an expression in the html.Example Example that demonstrates dynamically set CSS classes on an DIV HTML element. Lets...
View ArticleAngularJs directive: Restrict user to enter value with only ‘N’ decimal places
Directive Name: aDecimals How to Use: Add the attribute: n-decimals=”n” where n is the number like 2,3… If you want to restrict user to 2 decimal points, write like this: evo-decimals=”2″Source...
View Article‘Password’ and ‘Retype password’ fields using AngularJs
The below code snippet shows that how can you implement ‘Password and retype password fields should be matched’ validation/feature using the AngularJs.The following html code has two password typed...
View ArticleSorting objects/columns with multiple fields AngularJS using HTML template...
Sorting in the tabular data is very common task. If you are not using the ui-grid and using other component which doesn’t provide the inbuilt sorting feature, then you need to do some additional work...
View ArticleHow to display sum of two textbox in third textbox in AngularJS
This is the very common requirement to display sum of the two textbox input controls in the third textbox. However, there are many ways to display the sum of the two into the third input control using...
View ArticleHow to create checkbox list of all week days in AngularJs
In this example, I will show you to create list of all week days with the check boxes using AngularJs. Angular Directive Create a new directive as follows: var app = angular.module('app');...
View ArticleError: $injector:unpr in angular injector().invoke after grunt or gulf minify
Sometimes we need to inject and compile some markup using $compile service from outside AngularJs. We can do this using the extra injector() added to JQuery/jqLite elements. Like this:...
View ArticleDrag and drop rows within ui grid in Angular js
Ui Grid is the popular grid system specially for Angular 1.x(Currently ui-grid doesn’t support angular 2 and above version). Ui-grid has no dependency rather than angular which makes it light weight....
View Article