2010年6月22日星期二

Fwd: eEEksoft Display in iFrame


As a quick hack, you could do the following:

Opening in Parent window Step 1:
Add the following function to the sScript constant in the PopupWin.cs class

  	function [id]espopup_clientLoad(newTitle, newText, newContent) {

[id]bChangeTexts = true;
[id]nTitle = newTitle;
[id]nMsg = newText;
[id]nText = newContent;

[id]espopup_ShowPopup(null);

}

Step 2:
Recompile the PopupWin project to update the control with the new piece of JavaScript. (Note: you could remove steps 1 and 2 and just add the JavaScript to the page manually - need to replace the [id] bit with the correct ID for the control - but this wouldn't be as much fun would it Smile 

Step 3:
Place the control as normal into the parent page.

Step 4: 
Add some javaScript to the page within the IFrame, so that everytime it loads it calls the following:

window.parent.SAMPLEIDespopup_clientLoad('New Title Text', 'New Content Text', 'New Content text or HTML for popup window');

Note: the SAMPLEID above will need to be replaced with the ID value of the popup window.

This will then open the popup in the parent window, this also has the added advantage that all the code required to generate the popup is only loaded the once, in the parent window and not each time the iframe loads.

Hope this helps

Mark


Wandering through a World full of wander...
View Thread·PermaLink·Bookmark

没有评论: