Mike Morton
|
| Posted: 09/09/2004, 10:43 AM |
|
How can I create a frames page with a PDF on one side and a form on the
other from a Database link? Is this even possible?
|
|
|
 |
dataobjx
Posts: 181
|
| Posted: 09/09/2004, 10:58 AM |
|
Absolutely possible. Depending on how you're approaching this you may need to use two (2) frames.
One for the .pdf and one for the form.
But you'll need to add some javascript to refresh both iFrames when the record is changed.
If you downloaded CCS Developer Magazine (http://www.dataobjx.net) there is an example of how to incorporate iFrames within your application using the label component.
The javascript will be something along the lines of;
<script language="JavaScript">
Function ReloadFrames()
parent.FRAME_NAME_1.location.reload();
parent.FRAME_NAME_2.location.reload();
</script>
And you'd call reload frames on the BODY OnLoad="ReloadFrames()" event - probably for the frame containing the record.
_________________
www.DataObjx.net
www.mydigitalapps.com |
 |
 |
|