我有一个日历视图,当我将鼠标悬停在某个事件上时,我想要一个弹出窗口,其中应包含有关该事件的所有详细信息。现在我已经尝试在我的eventRender函数内部提供popover,它可以正常工作,但是我无法将我的对象传递给具有popover UI的html视图。
这是我的弹出功能:
$scope.eventRender = function( event, element, view ) {
element.popover({
title: function () {
return $("#popoverTitle").html();
},
content: function () {
return $("#popoverContent").html();
},
placement: 'bottom',
html: 'true',
trigger: 'hover',
animation: 'true',
container: 'body',
});
// return event;
};
这里是如何将我的整个事件对象传递到html页面。