Я пробовал это -> Раскрывающийся угловой материал внутри Bootstrap Modal
но это не работает для меня.
Я использую Angular Select внутри Md начальной загрузки.
Проблема в том, что выпадающие опции появляются за модальной. Мой код выглядит так:
<button type="button" mat-button data-toggle="modal" style="background: #dc6254 !important;" style="margin-top: -1px;" data-target="#basicExampleModal">
Select
<div class="modal fade" id="basicExampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Fill the following</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="overlay-content">
<mat-form-field>
<mat-select name="status" ngModel placeholder="Status">
<mat-option value="Accepted">
Accepted
</mat-option>
<mat-option value="Rejected">
Rejected
</mat-option>
<mat-option value="hold">
Hold
</mat-option>
<mat-option value="West">
In Process
</mat-option>
</mat-select>
</mat-form-field>
</div>
</div>
<div class="modal-footer">
<button type="button" mat-button data-dismiss="modal" style="outline:none;">Close</button>
<button type="button " mat-button style="outline:none;" >Save changes</button>
</div>
</div>
</div>