Browsing All Posts filed under »anjularjs«

Filter Phone Number in Angular

August 16, 2016

0

I have been meaning to store filters I find useful and write a little blog post about each one just so I have access to them and maybe someone else will find them handy. This filter is for displaying phone numbers in the following format: 1(xxx) xxx-xxxx When users are inputting their information you can […]

AngularJS: Preventing form submission

April 22, 2015

Comments Off on AngularJS: Preventing form submission

I don’t know about you but I have found that I often want to do validation on a form before that form is submitted. I know I don’t like server side validation and love the responsiveness of client side validation. So often I need to prevent the form from submitting after a “submit” button is […]

AngularJS Fundamentals

October 29, 2014

Comments Off on AngularJS Fundamentals

When I was first trying out AngularJS someone recommended this Video to me and I found it to be a great intro. I wanted to share AngularJS Fundamentals In 60-ish Minutes by Dan Wahlin. This video is a brilliant, concise presentation breaking down the many moving parts of AngularJS. It is a must see video […]

An Example of how to use Select Options in AngularJs

August 9, 2014

Comments Off on An Example of how to use Select Options in AngularJs

From simple select item bound to an array of strings, to select items bound to objects with properties. Make sure you can bind the ng-model correctly, set the default value and filter the items to display as needed.

D3 Charts with angularjs-nvd3-directives.js

July 29, 2014

2

Directives hide the complexity and code that is necessary to create d3.js, and nvd3.js charts, which makes adding charts to an Angular.js application quicker, and simpler than other methods.