display pdf in new window

  • Thread starter timothy ma and constance lee
  • Start date
T

timothy ma and constance lee

Sirs

I got the problem how to display a generated pdf file into a new windows in
xml using javascript: window.open

My program is in this way:

<form= abc action=1.servlet>
</form>

onclick="javascript:document.abc.submit"

But it opens a pdf file in the same window so my original one is overriden
 
D

DU

timothy said:
Sirs

I got the problem how to display a generated pdf file into a new windows in
xml using javascript: window.open

My program is in this way:

<form= abc action=1.servlet>
</form>

onclick="javascript:document.abc.submit"

comp.lang.javascript FAQ
Referencing Forms and Form Controls.
The Most Common Mistake
http://www.jibbering.com/faq/faq_notes/form_access.html#faComMis
But it opens a pdf file in the same window so my original one is overriden

<script type="text/javascript">
var WindowObjectReference = null;
function OpenRequestedPDFFile()
{
if(WindowObjectReference == null || WindowObjectReference.closed)
{
WindowObjectReference = window.open("path/filename.pdf",
"PDFWindowName", "location,menubar,resizable,scrollbars,status");
}
else
{
WindowObjectReference.focus();
};
}
</script>
</head>
<body>
....
<form name="FormName" action="1.servlet" onsubmit="OpenRequestedPDFFile();">
[...]

<p><input type="submit" value="Submit the form">Note that the submission
of the form will open a new window loading a <img src="PDFIconLogo.gif"
width="..." height="..." alt="PDF" title="PDF" style="cursor:
customizedPDF.cur, auto;"> file and starting Adobe Acrobat Reader in
that new window. [...file size...]KB</p>
</form>

Not tested.

DU
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top