angularjs - Can we control the order of directives execution -
hi can control order of execution of directives on page overall. not on same node . eg : there 4 directives on page on different nodes , want control order of directives execution .
no, can't control directive execution order on different elements - execute each element parsed. , means have bad design somewhere if you're depending on element order.
to achieve same results, can dynamically add , compile directives dom, in order want them to.
Comments
Post a Comment