Tag: AngularJs

Tables – AngularJS

To display data in tabular forms, we generally use ng-repeat directive that repeats an array of objects. [html] state city…

9 years ago

DOM – AngularJS

ng-disabled, ng-show, ng-hide and ng-click are used to bind application data to HTML elements. ng-disabled: ng-disabled is used to disable…

9 years ago

Events – AngularJS

AngularJS provides event directives. There are some common events provided by AngularJS to use in HTML. ng-mousedown - (onmousedown in…

9 years ago

Using Forms – AngularJS

AngularJS provides following flags to handle errors and validating the input. $dirty − indicates that value has is changed. $invalid…

9 years ago

Form Validations AngularJS

HTML5 provides some attributes that can be used to validate the input fields. required: required ensures that form field must…

9 years ago

Global API – AngularJS

AngularJS global API provides some set of functions that can be invoked by using angulr object. angular.isString() angular.isNumber() angular.lowercase() angular.uppercase()…

9 years ago