When I "Enable Time Picker" the datepicker calendar doesn't display on my forms.
If I disable it, the calendar appears and functions normally. At first, it was being covered by other page elements but after adding the following code snippet to datepicker_dashboard.css it appears properly:
Is the "time picker" also being hidden by other page elements? If so, what line of CSS would need the z-index tweak to get it to appear on top?
If I disable it, the calendar appears and functions normally. At first, it was being covered by other page elements but after adding the following code snippet to datepicker_dashboard.css it appears properly:
div.datepicker_dashboard {
z-index: 10000 !important;
}
Is the "time picker" also being hidden by other page elements? If so, what line of CSS would need the z-index tweak to get it to appear on top?