Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error beetween fullcalendar and webuipopover during event render element.pover #274

Open
Gmanunta opened this issue Sep 2, 2018 · 0 comments

Comments

@Gmanunta
Copy link

Gmanunta commented Sep 2, 2018

I'm using webuipover with js fullcalendar; in eventRender

this is my code

eventRender: function (event, element) {
element.webuiPopover({
container: schedulerManager.calendar,
content: event && event.GetTooltip && event.GetTooltip(),
type: 'html',
trigger: 'hover',
placement: 'auto-bottom',
cache: false,
autoHide: 20000,
delay: {
show: 1000,
hide: 100
},
onShow: function ($element) {
var a = "";
} // callback after show
});
element.bind("dblclick", () => window.open(event.GetUrl(), "_blank"));
//element.bind("click", (e) => { alert("ok" + e.which); zzz = e });
element.bind("contextmenu", (jsEvent) => {
schedulerManager.menu.ShowEventMenu(event, jsEvent.clientX, jsEvent.clientY);
});
},

if I set up parameter placement: 'auto-bottom', the webuipopover control render the tooltip on top left of the pagethat that it is wrong, if I use the the placement: 'auto-top' the webuipopover control works correctly

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant