First of all, I am ery new to Angular, so sorry if my question seems strange.
I know how to attach basic directives like ng-click
to elements like that:
<button class="test" ng-click="clearOverlays()">Remove</button>
But how can I attach a directive to input box that will be dinamically generated by Django template language ? Django code:
<ul>{{ filter.form.as_ul }}</ul>
The future element will look like that:
<input id="id_property_parent" name="property_parent" type="radio" value="12">
So the ideal variant would be if I would be able to attach ng-change directive to a future element by it's ID ('id_property_parent')
Is it possible to do it with Angular js framework ?