当我将鼠标悬停在fullcalendar项目上时,我正试图显示angular-strap popover。
我正在使用eventMouseover / eventMouseout回调来显示/隐藏popover:
$scope.calendarConfig = {
defaultView: 'basicWeek',
eventMouseover: function(event, jsEvent, view) {
element = $(jsEvent.target).closest('.fc-event');
popover = $popover(element, {placement: 'bottom', contentTemplate: 'calendar-item-popover.html'});
popover.$promise.then(popover.show);
},
eventMouseout: function() {
popover.hide();
popover = null;
}
};
然后我有一个弹出框体模板:
<script type="text/ng-template" id="calendar-item-popover.html">
<p>Event</p>
<p>event: {{event | json}}</p>
</script>
我的问题是如何将'事件'传递给popover范围?
以下是plunker:http://plnkr.co/9c6BDWsYuuWAfI4HnJAH
答案 0 :(得分:9)
我有一个有效的解决方案;可以使用popover.$scope
访问popover的范围:
popover.$scope.event = event
工作人员:
http://plnkr.co/W8n6LxsLCyZFO6ufPHvW
不确定这是否是最佳解决方案,因此我会等待一段时间以获得反馈。