As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I have a bunch of procedures in one .fex file, where I show a report (tabular data) a graph, another report, another graph, ect. Is there a way to add a page break between some of the procedures, so I see a report and a graph on one page and then a report an a graph on a second page. Right now, I am trying to use the header and footers to have it naturally print on different pages, due to the spacing.
On a related issue, I have taken these reports and graphs and laid them out with the HTML Layout Page (aka Resource Layout Page). Is there a way to add page breaks to the html code that will page break between sections where I have added reports and graphs?
Finally, when I run a HTM file, I always have to switch to landscape mode manually. Is there a way to default it to landscape and to set default margin sizes as well?
Thank you,
Joey
Posts: 318 | Location: Los Angeles, CA | Registered: November 15, 2005
-HTMLFORM END (edited...put in my closing td tags..gotta keep T happy 2. i'm looking for the same thing, but as far as i know, landscape is still a user-functionThis message has been edited. Last edited by: susannah,
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
As for landscape, there is no "real" concept of landscape in HTM, although when you print you can set a page layout of portrait or landscape. However, this normally has to be set by the client browser machine settings (e.g. each and every user).
There is an activeX object (produced by MeadCo and called ScriptX) that you can use on each report so that when a user clicks a button or link the print dialogue will be launched with the page already set-up to landscape etc. The button can be hidden when launching the diaogue and shown again after the dialogue has been closed.
I have used it in a couple of Client sites and the only problem I have received is a question of running an unknown script on the Clients system. You can either download the object in a zip file or reference it direct from their site (providing your users have access to the internet).
One word of warning though - You will spend a lot of time formatting your HTML output to get it displaying nicely in a page. If this thought worries you at all then go for the more controllable(?) option of only printing output from PDF reports.
For those of you that want to try it out for yourselves, here is a sample -
-* File landscape_print.fex
TABLE FILE CAR
SUM RCOST
DCOST
SALES
BY COUNTRY
BY CAR
BY MODEL
HEADING
"Landscape printing using Mead Co's ScriptX"
ON TABLE SET PAGE-NUM OFF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
ENDSTYLE
ON TABLE HOLD AS MYREPORT FORMAT HTML
END
-HTMLFORM BEGIN
<html>
<head>
<title></title>
<script language=javascript>
function printReport()
{
self.PrintButton.style.visibility = 'hidden';
factory.printing.header = "";
factory.printing.footer = "";
factory.printing.bottomMargin = 6;
factory.printing.topMargin = 5;
factory.printing.leftMargin = 5;
factory.printing.rightMargin = 5;
factory.printing.portrait = false;
factory.printing.Print(true);
self.PrintButton.style.visibility = 'visible';
}
</script>
</head>
<body>
<div id="PrintButton" style="position:absolute; visibility:visible; top:13; left:600; width:40;
cursor:hand; z-index:1;" valign="middle" align="center">
<font size=-1>Print</font>
<img src="/approot/baseapp/printer.gif" width="20" height="20" alt="Click here to print"
onclick="printReport();">
</div>
!IBI.FIL.MYREPORT;
<object id="factory" style="display:none" viewastext
classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814"
codebase="http://www.meadroid.com/scriptx/ScriptX.cab#Version=6,0,0,421">
</object>
</body>
</html>
-HTMLFORM END
Enjoy
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004