angular material md-datepicker inside bootstrap modal

后端 未结 3 1818
别跟我提以往
别跟我提以往 2021-01-17 16:42

I am tring to use Angular material md-datepicker inside a Bootstrap modal but, on clicking the date the modal popup hides. How can i solve that problem?

<
3条回答
  •  温柔的废话
    2021-01-17 17:05

    The working solution for me with @angular/material 5.2.4 is to add my css file following part.

    .cdk-overlay-container { 
        z-index: 1200; 
    }
    

提交回复
热议问题