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 am trying to get the background color for last 2 rows in the heading to line up with the back ground color for the titles. From the example below if I comment in the borders for the data the colors line up -- otherwise they are slightly off. Has anyone else had this problem and knows of a solution?
TABLE FILE CAR PRINT CAR MODEL COUNTRY
HEADING " " "Report Name" "Report Date" " " "Floating Header" " " ON TABLE SET PAGE-NUM OFF ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT PDF ON TABLE SET HTMLCSS ON
I left your data border styling in comments, and added this line
TYPE= REPORT, BORDER=OFF, $
The PDF is produced with the same gaps as you found. BORDER=OFF is the default and shouldn't change the look of the report. set BORDER=ON and you see the border. Compare the two reports and you will see that adding BORDER=OFF adds the gaps for the non-existent border.
I'd open a case with IBI, but I think bugs like this will not be fixed soon.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
Francis seems to have grasped your concept, I don't think that I do. I see what the results look like with and without that "TYPE= DATA, BORDER-RIGHT=LIGHT, BORDER-LEFT=LIGHT,$". and they both look good. So, I'm guessing that I'm missing something. So, can you post an image of what you get and what you want (visually)?
PS: I'm using 764 on a Vista machine.
In FOCUS Since 1983 ~ from FOCUS to WebFOCUS. Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
TABLE FILE CAR
SUM
SALES/D10
BY COUNTRY
BY CAR
BY MODEL
HEADING
"Report Name"
" "
"- - - - - - - - - - This is a Floating Header - - - - - - - - - -"
ON TABLE SET PAGE NOLEAD
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
TYPE=REPORT, FONT='ARIAL', SIZE=9, SQUEEZE=ON, $
-*TYPE=REPORT, BORDER=OFF, $
TYPE=TITLE, BACKCOLOR=RGB(198 219 255),$
TYPE=HEADING, STYLE=BOLD, JUSTIFY=CENTER, $
TYPE=HEADING, LINE=3, BACKCOLOR=RGB(198 219 255), $
ENDSTYLE
END
-*-- bug with borders ----------------------------------------------------------
TABLE FILE CAR
SUM
SALES/D10
BY COUNTRY
BY CAR
BY MODEL
HEADING
"Report Name"
" "
"- - - - - - - - - - This is a Floating Header - - - - - - - - - -"
ON TABLE SET PAGE NOLEAD
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
TYPE=REPORT, FONT='ARIAL', SIZE=9, SQUEEZE=ON, $
TYPE=REPORT, BORDER=OFF, $
TYPE=TITLE, BACKCOLOR=RGB(198 219 255),$
TYPE=HEADING, STYLE=BOLD, JUSTIFY=CENTER, $
TYPE=HEADING, LINE=3, BACKCOLOR=RGB(198 219 255), $
ENDSTYLE
END
The only difference between the two is the styling TYPE=REPORT, BORDER=OFF, $. This is in v7.6.5 and Mighty Max suggests it may be fixed in one of the 7.6 versions.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server