You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I may be missing something obvious (still relatively new to angular) but for this to be really useful/flexible it should be possible to add custom click events in the calendar days. In my case I need to create a calendar with several controls on each day; but when I add
<button ng-click="vm.doClick()">click me</button>
in the custom day template (and corresponding method to the controller) the event doesn't trigger; I'm guessing because the bc-date-selected event intercepts all clicks on the day (or perhaps because I screwed up).
The text was updated successfully, but these errors were encountered:
Hey! Sorry, I somehow missed the notification for this issue!
You are correct. This plugin was originally created with a narrow set of interactions; I simply needed a calendar that allowed selection on a single day. Looking at it now, it's clear that the current setup is a bit constraining.
Let me think on this one a bit. I haven't written Angular1 in several months.. need to refresh my knowledge on the best approach for this.
I may be missing something obvious (still relatively new to angular) but for this to be really useful/flexible it should be possible to add custom click events in the calendar days. In my case I need to create a calendar with several controls on each day; but when I add
<button ng-click="vm.doClick()">click me</button>
in the custom day template (and corresponding method to the controller) the event doesn't trigger; I'm guessing because the bc-date-selected event intercepts all clicks on the day (or perhaps because I screwed up).
The text was updated successfully, but these errors were encountered: