I have a Blazor "progress bar" component that I would like to overlay all other SfDialog components while they're loading their respective data.
The problem is that the dialogs often change their z-index to overlay my progress bar component and I haven't found a way to stop it. I even set the z-index to the maximum allowed value (int max) which still hasn't fixed the behaviour.
Is there an easy way to achieve what I want? I understand that I can use a separate SfDialog component and add that as a child to the other component, however, I'd really like to only have one global progress bar component that gets shown when appropriate.