Welcome to the nuBuilder Forums!

Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.

Bug: 1. Tooltip shows thru Date Picker and 2. is active thru Date Picker

Questions related to using nuBuilder Forte.
Post Reply
Paul
Posts: 175
Joined: Mon Aug 25, 2025 6:03 am
Has thanked: 32 times
Been thanked: 5 times

Bug: 1. Tooltip shows thru Date Picker and 2. is active thru Date Picker

Unread post by Paul »

I have a Date field (Date Picker) on my Edit form called 'Location age/construction'. Below that is a URL field. Below the URL field is a 'Download Documents' button that has a tooltip associated with it.
fields.PNG
When I click on the 'Location age/construction' field to pick a date, I see the tooltip for the other field and it partially obscures one of the dates and when I hover over the tooltip, it is active. The Date Picker should temporarily hide and disable the tooltip altogether so that 1. the user does not see it and so that 2. the user cannot possibly activate the tooltip at all when hovering over the date that is partially obscured by the tooltip.
date-picker-1.png
date-picker-2.png
You do not have the required permissions to view the files attached to this post.
steven
Posts: 432
Joined: Mon Jun 15, 2009 10:03 am
Has thanked: 61 times
Been thanked: 57 times

Re: Bug: 1. Tooltip shows thru Date Picker and 2. is active thru Date Picker

Unread post by steven »

Man,

I'm sorry,

We'll return all the money you spent with us.

Feel free to use another product.


Steven
A short post is a good post.
Buy Kev a Coffee
kev1n
nuBuilder Team
Posts: 4601
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 77 times
Been thanked: 547 times
Contact:

Re: Bug: 1. Tooltip shows thru Date Picker and 2. is active thru Date Picker

Unread post by kev1n »

Good catch — this is a classic z-index issue, where one element is layered behind another due to their stacking order in CSS.
You can fix it by overriding the date picker’s z-index with a higher value, for example:

Code: Select all

.datepicker-dropdown {
  z-index: 9999; 
}
Post Reply