I have just started using AngularJs directives, using the resources here, here and here.
I have a situation where i need to do something after all directives have been loaded.
i.e
Scenario 1
Scenario 2
I can't seem to find a 'directives loaded' event. With a search, the best I could find was this SO post, (for which this answer does work), but it feels like a 'broad brush' approach.
What is the correct way of doing this please?
Happy to post code if needed, but it doesn't seem beneficial in this instance.
You can use $timeout to execute a function after all the directives have been compiled, linked, and rendered.
$timeout(function() {
// do something here
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With