Within a Thinkwise Application (Universal GUI), we have a custom screen that's displayed in an Iframe. To send results from this Iframe the Development team tries to use a POST-command, that is blocked in the Iframe. ‘Blocked form submission to because the form's frame is sandboxed and the ‘allow-forms’ permission is not set’.
Can we solve this by adding the ‘allow-forms’ permission ‘sandbox’ attribute within the I-frame?
<iframe src="afnamedashboard.html" sandbox="allow-forms"></iframe>