By maldoror on Thursday, 25 April 2019
Replies 24
Likes 0
Views 1.4K
Votes 0
Hi, the behaviour of the tooltip in the monthly calendar-view changed some weeks ago without any changes from my side. If one opens the tooltip in a calendar-event it stays open and you get several tooltips one above the other. It seems like the closing on mouseout does not work anymore. Can you help me with this problem?

Thanks,

Florian
Hello Florian,

Can you try with the protostar theme? does it close now?

If so can you provide super user logins so I can review.

Many thanks
Tony
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Tony,

thanks for your answer. I just tried it with protostar and it's the same problem. Can I send you the super user login via this support forum? I think it is public, right?

All best,
Florian
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Florian,

On reply you can put them in:

Site Details (Private)

Many thanks
Tony
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Tony,

thank you for your help.

All best,

Florian
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Tony is away on holiday so I'm taking a look at this for you.

I think its a clash with a module on your site - if I load the page (without modules) as https://www.your-domain.de/de/kalender?tmpl=component the tooltips work fine.

I suspect its a clash with the responsive slider module.

I am unable to login with the credentials you have given to check this - the site says they are incorrect
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

I have a similar problem since I upgraded our website from shaper_helix3 to shaper_helixultimate (bootstrap 3 to 4).
The Popup Windows don't close anymore.
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Can you provide super user logins please? It looks like you have a template override in place setting the delay on the tooltip to 0.

Many thanks
Tony
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

thank you.
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
What i9s the htaccess username/password?

Many thanks
Tony
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
It was the same. I set a new.
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
I changed the library file components/com_jevents/libraries/bootstrap.php and now it works.

Looks like a change in bootstrap 4 makes a workaround we had unnecessary now
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
thank you.
will you include this in the next update?
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello. I have the same problem. What should I do?
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
I changed the library file components/com_jevents/libraries/bootstrap.php and now it works.

Looks like a change in bootstrap 4 makes a workaround we had unnecessary now


Please specify what needs to be changed.
I have the same problem.
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
I'll put together a new release in the next couple of days.
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
I have this same problem (tooltips don't close).
How can I solve,

Thanks
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
what version of JEvents are you using?

Is there a URL we can look at?
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
It's a test site.
TitleThis is the link >>>
JEvents Version : 3.4.50
Thanks
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
this is a new issue that arises from bootstrap 4

If you edit the file components/com_jevents/libraries/bootstrap.php and search for the text "// Bootstrap 4" at line c. 437 and change the code from
        // Bootstrap 4         
if (this.config)
{
if (this.config.container == '#jevents_body' && this.config.trigger.indexOf('hover') >=0) {
var that = this;
// try again after what would have been the delay
setTimeout(function() {
return that.hide.call(that, arguments);
}, that.config.delay.hide);
return;
}
}

to
        // Bootstrap 4         
if (this.config)
{
//- This is not needed for recent versions of Bootstrap 4
/*
if (this.config.container == '#jevents_body' && this.config.trigger.indexOf('hover') >=0) {
var that = this;
// try again after what would have been the delay
setTimeout(function() {
return that.hide.call(that, arguments);
}, that.config.delay.hide);
return;
}
*/
}


It should resolve the issue - I'll be releasing a new version soon with a fix for this included.
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Perfect!
Now the tooltip works correctly.
Thanks!
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post