Is there a way in Angular 12 with Bootstrap 5 using ngPrime to overlap a p-dialog over any other element without using z-index and CSS, solely relying on PrimeNG?
I have tried using z-index with:
.my-class{
z-index: 2147483647 !important;
}
However, I haven't had success and I am looking for a method to make my refresh modal overlay other modals.
<p-dialog
[visible]="display"
[modal]="true"
[transitionOptions]="'10ms'"
class="auto-refresh"`your text`
[closeOnEscape]="false"
[closable]="false"
[focusOnShow]="false"
>
These are my p-dialog tests and I haven't achieved the desired outcome yet.