By Guest on Thursday, 25 April 2019
Replies 24
Likes 0
Views 1.5K
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
·
Friday, 26 April 2019 18:40
·
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
·
Tuesday, 30 April 2019 14:21
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Florian,

On reply you can put them in:

Site Details (Private)

Many thanks
Tony
·
Wednesday, 01 May 2019 21:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Tony,

thank you for your help.

All best,

Florian
·
Friday, 03 May 2019 12:42
·
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
·
Tuesday, 07 May 2019 11:50
·
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.
·
Tuesday, 04 June 2019 10:03
·
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
·
Wednesday, 05 June 2019 09:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

thank you.
·
Thursday, 06 June 2019 11:01
·
0 Likes
·
0 Votes
·
0 Comments
·
What i9s the htaccess username/password?

Many thanks
Tony
·
Thursday, 06 June 2019 23:33
·
0 Likes
·
0 Votes
·
0 Comments
·
It was the same. I set a new.
·
Tuesday, 11 June 2019 07:46
·
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
·
Thursday, 13 June 2019 15:42
·
0 Likes
·
0 Votes
·
0 Comments
·
thank you.
will you include this in the next update?
·
Friday, 14 June 2019 09:36
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello. I have the same problem. What should I do?
·
Friday, 14 June 2019 13:48
·
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.
·
Saturday, 15 June 2019 13:11
·
0 Likes
·
0 Votes
·
0 Comments
·
I'll put together a new release in the next couple of days.
·
Monday, 17 June 2019 13:17
·
0 Likes
·
0 Votes
·
0 Comments
·
I have this same problem (tooltips don't close).
How can I solve,

Thanks
·
Thursday, 18 July 2019 15:16
·
0 Likes
·
0 Votes
·
0 Comments
·
what version of JEvents are you using?

Is there a URL we can look at?
·
Monday, 22 July 2019 08:42
·
0 Likes
·
0 Votes
·
0 Comments
·
It's a test site.
TitleThis is the link >>>
JEvents Version : 3.4.50
Thanks
·
Monday, 22 July 2019 09:20
·
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.
·
Monday, 22 July 2019 15:21
·
0 Likes
·
0 Votes
·
0 Comments
·
Perfect!
Now the tooltip works correctly.
Thanks!
·
Monday, 22 July 2019 16:11
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post