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.
When I run the following code I see lovely light borders in the data section of the report:
TABLE FILE CAR
"HEAD 1"
"HEAD 2"
PRINT CAR
BY COUNTRY
FOOTING
"FOOT 1"
"FOOT 2"
ON TABLE SET PAGE NOPAGE
ON TABLE SET HTMLCSS ON
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET STYLE *
TYPE=REPORT,
GRID=OFF, $
TYPE=DATA,
BACKCOLOR=( 'WHITE' RGB(249 249 249) ),
BORDER=LIGHT,
BORDER-STYLE=SOLID,
BORDER-COLOR=RGB(169 169 169), $
ENDSTYLE
END
When I switch the output format to AHTML...
TABLE FILE CAR
"HEAD 1"
"HEAD 2"
PRINT CAR
BY COUNTRY
FOOTING
"FOOT 1"
"FOOT 2"
ON TABLE SET PAGE NOPAGE
ON TABLE SET HTMLCSS ON
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET STYLE *
TYPE=REPORT,
GRID=OFF, $
TYPE=DATA,
BACKCOLOR=( 'WHITE' RGB(249 249 249) ),
BORDER=LIGHT,
BORDER-STYLE=SOLID,
BORDER-COLOR=RGB(169 169 169), $
ENDSTYLE
END
The borders are heavy not light.
I am looking at the 'Adding Grids and Borders' section of the manual, and nothing is sticking out to me as to what I need to do differently.This message has been edited. Last edited by: FP Mod Chuck,
Pilot: WebFOCUS 8.2.06 Test: WebFOCUS 8.1.05M Prod: WebFOCUS 8.1.05M Server: Windows Server 2016/Tomcat Standalone Workstation: Windows 10/IE11+Edge Database: Oracle 12c, Netezza, & MS SQL Server 2019 Output: AHTML/XLSX/HTML/PDF/JSCHART Tools: WFDS, Repository Content, BI Portal Designer & ReportCaster
TABLE FILE CAR
"HEAD 1"
"HEAD 2"
PRINT CAR
BY COUNTRY
FOOTING
"FOOT 1"
"FOOT 2"
ON TABLE SET PAGE NOPAGE
ON TABLE SET HTMLCSS ON
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET STYLE *
TYPE=REPORT,
GRID=OFF, $
TYPE=DATA,
BACKCOLOR=( 'WHITE' RGB(249 249 249) ),
BORDER=LIGHT,
BORDER-STYLE=SOLID,
BORDER-COLOR=RGB(169 169 169), $
ENDSTYLE
END
-HTMLFORM BEGIN
<style>
td {
border-width: 1px !important;
}
</style>
-HTMLFORM END
Further information about my scenario: Our current 'report style' is stored within a .sty that all of our reports INCLUDE.
I am now required to have all reports now have 'thin borders'.
If I can do that in the existing .sty (i.e., use WF StyleSheet commands) then I can change all my reports by only changing the one file.
We currently don't have a common 'CSS override' file, in our report set.
Once again, many thanks.
Fingers crossed for further assistance/ideas. :-)
Pilot: WebFOCUS 8.2.06 Test: WebFOCUS 8.1.05M Prod: WebFOCUS 8.1.05M Server: Windows Server 2016/Tomcat Standalone Workstation: Windows 10/IE11+Edge Database: Oracle 12c, Netezza, & MS SQL Server 2019 Output: AHTML/XLSX/HTML/PDF/JSCHART Tools: WFDS, Repository Content, BI Portal Designer & ReportCaster
-SET &RANDOM = RDUNIF(D5) * RDUNIF(D5) * 10000;
TABLE FILE CAR
"HEAD 1"
"HEAD 2"
PRINT CAR
BY COUNTRY
FOOTING
"FOOT 1"
"FOOT 2"
ON TABLE SET PAGE NOPAGE
ON TABLE SET HTMLCSS ON
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET STYLE *
TYPE=REPORT, GRID = OFF,$
TYPE=REPORT,
CSSURL=https:/ibi_apps/rs/ibfs/WFC/Repository/myfoldername/testcss.css?WORK=&RANDOM,$
TYPE=DATA,
BACKCOLOR=( 'WHITE' RGB(242 242 242) ),
BORDER=LIGHT,
BORDER-STYLE=SOLID,
BORDER-COLOR=RGB(221 221 221), $
ENDSTYLE
END