1 回答
TA贡献1798条经验 获得超3个赞
根据您的评论,我看到您正在使用闪电网络组件。
在销售人员与 LWC 合作时,我遇到了与您相同的问题。
我可以通过编辑 daygrid 包中的 main.js 并在 Popover 被隐藏时添加延迟来解决这个问题。
这是代码片段
function Popover(options) {
var _this = this;
this.isHidden = true;
this.margin = 10; // the space required between the popover and the edges of the scroll container
// Triggered when the user clicks *anywhere* in the document, for the autoHide feature
this.documentMousedown = function (ev) {
if (_this.el && !_this.el.contains(ev.target)) {
setTimeout(function () {
_this.hide();
}, 1000);
}
};
this.options = options;
}
函数从 main.js 的第 100 行开始。我正在使用 Fullcalendar v4
添加回答
举报