Chocolatey Package Manager For Windows OS
Chocolatey package manager is windows based framework for quick install of application. It is similar to apt-get, NPM and YUM. In this demo, “We will configure choclatey and install noteapd++ application in our windows based machine“. You can find more detail about chocolatey in the below link. http://chocolatey.org/about Download the […]
AngularJS filter module
AngularJS provide filtering function in ng module. filter keyword can be used to filter from a array of element or array of object. In this demo, "We will create an example to filter from an array of item and from array of object with a specified property of the object". In the example the initial […]
AngularJS Form Validation
AngularJS provides form validation using $invalid and $valid tag. These $invalid and $valid tags are Boolean in nature. In this Demo,"We will create button with 2 required input field. The submit button will be disabled and text color is red if form is invalid.Once the form is valid the submit button become active and color […]
Implementing AngularJS Anchor Scroll
AngularJS provides $anchorScroll method to to jump to a location with specified id. AngularJS provides $location object with hash() method to replace the current URL with a given key string. $anchorScroll reads the hashed string and looks for the given id and jump to the section. In this demo, "We will implement the anchor scroll […]