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.
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
Bug: 1. Tooltip shows thru Date Picker and 2. is active thru Date Picker
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.
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.
You do not have the required permissions to view the files attached to this post.
Re: Bug: 1. Tooltip shows thru Date Picker and 2. is active thru Date Picker
Man,
I'm sorry,
We'll return all the money you spent with us.
Feel free to use another product.
Steven
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
Buy Kev a Coffee
-
- 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
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:
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;
}