Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

Date Picker Popup is hidden when used in thickbox


Project:datePicker
Version:2.0.0-Beta
Component:User interface
Category:bug report
Priority:normal
Assigned:kelvinluck
Status:closed
Description

An input box with the datePicker popup functionality has the following problem:

When the default configuration of ThickBox and DatePicker are used together, the pop-up calendar will show behind the thickbox panes.

Changing the z-index of div#dp-popup corrects the issue.

div#dp-popup {
position: absolute;
font-size: 10px;
font-family: arial, sans-serif;
background: #ccc;
padding: 2px;
min-height: 172px;
min-width: 171px;
}

to
div#dp-popup {
position: absolute;
font-size: 10px;
font-family: arial, sans-serif;
background: #ccc;
padding: 2px;
min-height: 172px;
min-width: 171px;
z-Index: 199;
}

Comments

#1

Thanks for the report - I've added the z-index in :)

#2