The modal script inherits from the main DHTML window script, so any solution for the later should work for the former as well. One such discussion on this can be found here. In a nutshell, inside dhtmlwindow.js, try finding the below line:
Code:
t.contentarea.innerHTML='<iframe src="" style="margin:0; padding:0; width:100%; height: 100%" name="_iframe-'+t.id+'"></iframe>'
And change the src property to point to an actual page behind the secure layer, such as:
Code:
t.contentarea.innerHTML='<iframe src="blank.htm" style="margin:0; padding:0; width:100%; height: 100%" name="_iframe-'+t.id+'"></iframe>'
blank.htm should just be a blank page that exists.
Bookmarks