02-03-2023, 10:47 PM
This issue is happening because your content element (DlgMsgBox region) doesn't have any size set (either in IW or in the template). You can fix this setting the size of the element in your template, example:
<div class="d-none">
{%DlgMsgBox style="width:600px; height:300px" %}
</div>
Of course you can also set the style in it's own class in a separate CSS file or included in the HTML, it is a personal preference...
It will work that way.
<div class="d-none">
{%DlgMsgBox style="width:600px; height:300px" %}
</div>
Of course you can also set the style in it's own class in a separate CSS file or included in the HTML, it is a personal preference...
It will work that way.

