why mat-select not working inside the modal ? onclick it shows options behind the Modal

前端 未结 5 1585
闹比i
闹比i 2020-12-30 07:53

i Used the ngx-bootstrap Modal. But i faced problem when i used the mat-select inside of it . The mat-select Options display behind the Modal . i already these solutions her

5条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-30 08:31

    It's because of conflicting z-indexes.

    Quick fix

    Modify the template css/scss where the modal and mat-select are placed

      .cdk-global-overlay-wrapper, .cdk-overlay-container {
         z-index: 99999 !important;
      }
    

提交回复
热议问题