I have a dialog, and I have a datepicker field on the dialog.
When I open the dialog and click in the datepicker field, the datepicker panel show behind dialog.
I try more properties: zindex, stack, bgiframe, but not success.
Someone can help me?
Tks.
Best Solution
Old Answer
z-index
(note the hyphen!) is the property that matters. Make sure you set it greater than the dialogue, and make sure you set it on the correct element. Here's how we do it:API Change - April 17, 2010
In the CSS file for the date picker, find the
.ui-datepicker
item and change it:Using z-index: 9999 !important; worked in Firefox 3.5.9 (Kubuntu).