0

Am not using bootstrap modal but am using

j confirm modal the problem is am loading a partial page from another page. However when l try using the date time picker it will appear behind the modal enter image description here

Most of the solutions online are mostly based on bootstrap modal and have tried using this class also

#ui-datepicker-div {
        position: relative;
        z-index: 99999; 
    }

but to no avail. even this links similar question another similar question

maybe it is because am using jConfirm js file or what ?

Billy Watsy
  • 74
  • 1
  • 10

1 Answers1

0

You need to increase the z-index of the dropdown calendar:

.datepicker.datepicker-dropdown.dropdown-menu {
     position: relative;
     z-index: 99999; 
}
McBern
  • 549
  • 1
  • 4
  • 8