i have the common problem for jquery datepicker that is showing behind dropdown box. i also tried to apply solutions provided here:
Trouble with jQuery Dialog and Datepicker plugins
but it seems not working on my page.
i use "jquery-ui.css" and inside it, i have defined:
.ui-datepicker {
width: 17em;
padding: .2em .2em 0;
z-index: 9999 !important;
}
but still the datepicker shows behind the drop down box. when i checked my page in chrome developer's tool, i got the following:
<div id="ui-datepicker-div" class="ui-datepicker ui-widget ui-helper-clearfix
ui-corner-all" style="position:absolute; top:160.875px; left 146px; z-index:1;">
my question is how can i know where is the correct place to modify the z-index, i believe defining it in .ui-datepicker is correct but i just dont know why it does not work.
any response will be appreciated. thank you.