I have a setup like this:
- Controller
cbroadcasts evente - Directive
dlistens fore, and one, writes to the DOM via append, and in so doing, creates new elements specifying a directived2.
IE: element.append('<directiveTwo ...>')
- Directive
twois never called by Angular - When I inspect the DOM (and debug) I see that Controller
cand directivedare doing their jobs, and I have newdirectiveTwoelements.
What is missing? What needs to be done to trigger the directive 2 call after dynamically creating those elements?