Top "Angularjs-directive" questions

AngularJS directives are a way to teach HTML new tricks by extending the HTML vocabulary.

AngularJS : ng-repeat filter when value is greater than

I have a simple ng-repeat that throws out data, one of fields it displays is NumberOfStamps: <tr ng-repeat-start="list …

angularjs angularjs-directive angularjs-scope angularjs-ng-repeat
Ng-init via function

As you know, it is possible to initialize objects as follows: <div ng-init="friends = [{name:'John', phone:'555-1276…

angularjs angularjs-directive angularjs-ng-init
AngularJS Directive Passing String

This directive is trying to create an HTML element called progress bar that tracks progress as you move page to …

javascript string angularjs angularjs-directive parameter-passing
How to autocapitalize the first character in an input field in AngularJS?

How to autocapitalize the first character in an input field inside an AngularJS form element? I saw the jQuery solution …

angularjs input angularjs-directive capitalize
AngularJS directive dynamic templates

I'm trying to make directive with differtent templates based on scope value. This is what i done so far which …

angularjs angularjs-directive angularjs-scope
AngularJS directive binding a function with multiple arguments

I'm having some trouble binding a function defined in a controller with a callback function in a directive. My code …

angularjs angularjs-directive
How to correctly use ng-cloak directive?

Somehow, ng-cloak in AngularJS doesn't work. I want to hide {{ }} while loading the page. Because it looks awful. <!DOCTYPE …

javascript angularjs angularjs-directive ngcloak
AngularJS watch DOM change

I have one auto-carousel directive which iterates through the linked element's children. The children however are not yet loaded in …

angularjs dom angularjs-directive angular-ng-if
Directive template unique IDs for elements in AngularJS

I have a directive that can be used multiple times on a page. In the template of this directive, I …

angularjs templates angularjs-directive uniqueidentifier
Pass form to directive

I want to encapsulate my form fields in a directive so I can simply do this: <div ng-form='myForm'&…

angularjs angularjs-directive