Dialog Service Show Mask

Hello,

When I try to open a Dialog, I get all the window gray (inactive). This doesn't occurs sometime ago.

I see in the result html code this...
< div class="rz-dialog-mask">< /div >

How can I avoid this?

Hello.
If u are opening a page u can try this:

Put this in ur js file

async function removeElement(elSelector) {
	$(elSelector).remove();
};

Then in the page u want to open

protected override void OnAfterRender(bool firstRender)
	{
		if (firstRender)
		{
			JS.InvokeVoidAsync("removeElement", ".rz-dialog-mask");
		}
	}

Or u can use SideDialog that contains in the options the boolean ShowMask