Hi,
I have a dialog with declaration as follows:
<SfDialog @ref="dlg" pos Width="50%" Target="#uppertarget"
ID="dialog" ShowCloseIcon="true" IsModal="true" Visible="false">
When shown, I have a second dialog with declaration as follows:
<SfDialog @ref="dlg" pos Width="80%" Target="#dialog.e-dialog"
Visible="false">
Both, I am using their ref variable to call as follows:
await dlg.Show();
The strange behavour in local/dev environment, the second dialog pop ups on top of the first one, but in the hosted environment, it is still showing at the back of the first dialog, please see image
Local Image
Live Image
Thanks.