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 requirement where the table display area size is fixed. The rows to be displayed in this table have to evenly spaced. How can I dynamically space the lines in the table. Please help.
dharma ------------------ WF v 7.1.1 OS - Win XP Output: PDF, EXL2K
Posts: 41 | Location: Boston | Registered: August 17, 2005
TABLE FILE CAR SUM RETAIL_COST COMPUTE LINES/D1 = IF LAST COUNTRY EQ COUNTRY THEN LINES + 1 ELSE 1; BY HIGHEST COUNTRY BY HIGHEST CAR ON TABLE HOLD AS H0 FORMAT ALPHA END -RUN
TABLE FILE H0 PRINT RETAIL_COST COMPUTE SPACES/A1 = IF LAST COUNTRY NE COUNTRY THEN FTOA(LINES,'(D1)',SPACES) ELSE LAST SPACES; NOPRINT BY COUNTRY BY CAR ON COUNTRY SUBFOOT " " WHEN SPACES EQ '2';
ON COUNTRY SUBFOOT " " " " WHEN SPACES EQ '1'; ON TABLE PCHOLD FORMAT PDF END -RUNThis message has been edited. Last edited by: <Mabel>,
Posts: 406 | Location: Canada | Registered: May 31, 2004
-* dynamc rows
-SET &MYHEIGHT = 100 ;
TABLE FILE CAR PRINT *
ON TABLE HOLD AS MYTAB FORMAT HTMTABLE
ON TABLE SET STYLE *
TYPE=REPORT,FONT='Arial',SIZE=8,$
TYPE=DATA,COLUMN=CAR,CLASS=CARSS,$
END
-RUN
-HTMLFORM BEGIN
<HTML>
<HEAD>
<STYLE>
TD.CARSS {height: &MYHEIGHT }
</style>
</HEAD>
<BODY>
!IBI.FIL.MYTAB;
</BODY>
</HTML>
-HTMLFORM END
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003