Category Archives: AngularJs

Exports Patterns in node.js

Let us discuss some of the export patterns used in node. Common export patterns observed are: Exports a Namespace Exports a Function Exports a Constructor Exports a Namespace Module.exports is used to define the end point for accessing the module … Continue reading

Posted in AngularJs, Book, Node | Tagged | Leave a comment

AngularJs 2.0 – Breaking Changes

AngularJs is one of the widely used JavaScript framework based on MVC pattern. Currently we have AngularJs version 1.3 with lot of great features and adopted very well in the technology world. But, AngularJs team is working on a new … Continue reading

Posted in AngularJs, HTML5 | Tagged | Leave a comment

AngularJs – Extracting Querystring

We are discussing about different implementations using AngularJs in previous blogs. Today, let us see how we can access the data from querystring using AngularJs. AngularJs is based on MVC pattern and all requests reach the controller first. We need … Continue reading

Posted in AngularJs, HTML5 | Tagged | Leave a comment

AngularJs – Filter over a field & multiple filter

AngularJs provides great filtering options. We use the filter for filtering the collection of data according to user selection. Following code filter the students’ data using the user entry in ‘query’ field. In this case the filter will apply to … Continue reading

Posted in AngularJs, HTML5 | Tagged | Leave a comment

AngularJs – Modal popup with custom style

  Modal popups based on AngularJs is having predefined styles associated with it. If you want to customize the modal popup style, we can use the windowClass option available as part of the modal’s open method.Follow the steps to define … Continue reading

Posted in AngularJs, HTML5 | Tagged , | Leave a comment