Reputation: 5043
I've created this Plnkr to show what I've started:
http://plnkr.co/edit/LzcbPMqqiQbFjVzw4kDO?p=preview
Two questions:
How do get angular to leave the original button in place and insert the template after it, instead of inserting the template as a child of the button?
How do I get the directive to only be applied on an event? When the button is clicked for example?
I thought I could use another attribute to specify the event e.g. ctx-trigger="click" and then in the compile function do element.bind(attr['ctxTrigger'],...) but that didn't work.
Upvotes: 0
Views: 1253
Reputation: 77912
As additional to @user1737909 answer:
How do I get the directive to only be applied on an event? When the button is clicked for example?
You can use ng-show
or ng-hide
option to manage view
Upvotes: 1
Reputation: 19040
How do get angular to leave the original button in place and insert the template after it, instead of inserting the template as a child of the button?
You can't.
How do I get the directive to only be applied on an event? When the button is clicked for example?
I think you can add the matching class (ie with ng-class), it should pick it up if you have restrict: 'C'
.
Upvotes: 1