Angularjs directive dependencies (order of execution)
-
Let's say I have the following html in which masterdir and innerdir are custom directives: <div master-dir> <div inner-dir ng-repeat="x in set"></div> </div> How can I make the directives execute in the following order (without using $timeout, 'cause it looks ugly to me): ng-repeat n times innerdir masterdir Background: I want to alter the dom in every directive and the directives kind of depend on each other (the innerdir should alter the dom that ng-repeat produces and the masterdir should alter the dom produced by innerdir) I've tried it with priority, require and pre/post/compile but I didn't find the right mix. I'm really out of ideas at this point.
-
Answer:
In https://docs.angularjs.org/guide/compiler they say that, but none chart is there. Anyway, I found that in each directive docs page, in Directive Info section, the priority appears wrote like that (for ng-repeat): ng-repeat: Directive Info This directive creates new scope. This directive executes at priority level 1000. I also found the next link that seems to be very helpful. I´m still reading it trying to learn (didn´t know too much about angular priorities). Hope this is helpful for you too. http://www.bennadel.com/blog/2447-exploring-directive-controllers-compiling-linking-and-priority-in-angularjs.htm
Domenic at Stack Overflow Visit the source
Related Q & A:
- How to separate functionality of Angular directive?Best solution by Stack Overflow
- Where to put $watch in directive in AngularJS?Best solution by stackoverflow.com
- How to dynamically load directive in angularjs through json?Best solution by Stack Overflow
- How to play a sound after a command has finished its execution?Best solution by Ask Ubuntu
- How can I inject a constant into a directive's controller?Best solution by stackoverflow.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.