Angularjs 49
Creating A Basic Custom Directive In AngularJS
Directives are the base of AngularJS library. You have seen ng-app, ng-controller, ng-repeat keywords used in AngularJS templates and partials.In my previous posts I have used these repeatedly.These are nothing other than inbuilt directive from AngularJS library. In this Demo, "We will create a custom directive for students .This directive will append two string PASS […]
Using Resources In AngularJS
AngularJS provides $resource module for handling remote data.This module supports REST data interaction. In the core of AngularJS $http module provides core functionality for remote data interaction. In this Demo, "We are going to access a student data file from a remote url through $resource module in Angularjs and displaying them in a table". In […]
Understanding Partials In AngularJS
"PARTIALS" are Similar to a Angular template.The only difference is there they can be a part of a template. In this Demo, "We Will create a partial template for Student Which will have table rows displaying details of each student.This Student Table will be rendered when a button will be clicked". I believe you have […]
Integrating Bootstrap UI with AngularJS
Twitter provides its Bootstrap UI for AngularJS in directive format.This results in more cleaner and beautiful UI in AngularJS application. In this Demo, "We will Learn How to integrate Twitter Bootstrap UI for AngularJS web application.Then We will test a Bootstrap progress bar component using a AngularJS controller". For setting up a sample AngularJS project […]