Trouble Adding DatePicker to Modal - Displays in backdrop

前端 未结 1 1102
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-26 13:54

I am trying to insert a DatePicker I found here: http://www.eyecon.ro/bootstrap-datepicker/ but I cannot get it to display in front of my modal. (I can see it in the backdrop of

相关标签:
1条回答
  • 2021-01-26 14:52

    It's a css problem :

    The modal datepicker is behind the modal so :

    CSS :

    .datepicker{
        z-index: 1100 !important;
    }
    

    If the datepicker widget is well .ui-datepicker

    0 讨论(0)
提交回复
热议问题