I open a dialog window in my application. After that I would like to open a second dialog from the existing dialog window. The second dialog opens inside the first dialog. The problem arise when the second dialog size is greater than the first one. In that case the second dialog does not appear in the full size but is limited to the size of the first window.
What should I do to display the second dialog window in the whole size?
Best regards,
Javanus
This might be called a workaround , but…
you always can do something like
(hide first dialog and open the second)
and in the second dialog set
onHide="dlg1.show()"