I am building an item view. I would like to display a custom dialog outside of the iframe, I wasn’t able to find a suitable function in the monday js sdk. I did notice that an existing app, pandadoc, is able to have a dialog outside of the iframe as shown in this webinar: New Features June 2021 | monday.com - YouTube
Good to hear from you. I have found out this can be accomplished with the undocumented feature from the sdk openAppFeatureModal and it supports the following arguments for anyone else interested:
url,
urlPath,
urlParams,
width,
height
Url defaults to the iframe’s URL if not specified.
The function returns a promise, .then will be called when the modal is closed.
You can close the modal by calling the closeAppFeatureModal function.