Jump to content

Print TUniURLFrame


belo

Recommended Posts

What is the correct code for displaying the print dialog with TUniURLFrame?
 
I made my code based on the example of the post:
 
 
When printing is giving error as attached image...
 
Code..
 
In the Form.Script:

function zPrint(oTgt){ 
oTgt.focus(); 
oTgt.print();
}

function printIframe(id)
{
var iframe = id;
var ifWin = iframe.contentWindow || iframe; // the change
zPrint(ifWin);
return false;
}

In the button.ExtEvents.OnClick:

function OnClick(sender, e)
{
 var frm = FrmDAM.UniURLFrame1.iframe;
 if (frm) {
 printIframe(frm);
 }
}

 

As attached image, you can see who is the image of UniURLFrame mixing with the bottom of the main screen.

post-875-0-53583800-1361754417_thumb.jpg

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...