Time picker going behind the twitter bootstrap modal

前端 未结 1 1510
粉色の甜心
粉色の甜心 2021-01-28 19:22

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

相关标签:
1条回答
  • 2021-01-28 19:46

    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; } 
    
    0 讨论(0)
提交回复
热议问题