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 […]
How to append ellipsis(…) to a paragraph?
There are some time where you want do display one line from a big paragraph appended with a ellipsis(…) symbol. CSS provides a property called text-overflow for this purpose.It has “ellipsis” or “clip“. ellipsis : It adds “…” to the end of the line. clip: It crops the paragraph and […]
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 […]