I am using bootstrap date-time picker in my Java Spring MVC web application to select date and time separately. I have included the CSS and scripts required. my HTML code would
After some research, I found the solution from the following URL:
https://github.com/jdewit/bootstrap-timepicker/issues/326
I added a CSS entry to my stylesheet to set the z-index for the time picker and the issue was solved:
.bootstrap-timepicker-widget.dropdown-menu { z-index: 1050!important; }