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.
Try the below example. The Border won't show in that. If you comment the Expandbyrow line then you will able to see the border.
SET EXPANDBYROW=ON -RUN TABLE FILE CAR HEADING "TEST ACCORDIAN WITH BORDER" SUM MODEL RETAIL_COST BY COUNTRY BY CAR ON TABLE SET PAGE-NUM OFF ON TABLE SET ONLINE-FMT HTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * TYPE=REPORT,GRID=OFF,$ TYPE=HEADING,SIZE=9,JUSTIFY=LEFT,STYLE=BOLD,COLOR=RED, BORDER-BOTTOM=HEAVY, BORDER-BOTTOM-STYLE=DOUBLE,BORDER-COLOR=GRAY,$ ENDSTYLE END -EXIT
Any way to get the border in accordian report.
WFConsultant
WF 8105M on Win7/Tomcat
Posts: 780 | Location: Florida | Registered: January 09, 2005
I don't use borders, mainly because they look messy. This is an example of my styling - in this example I use a white border to space the cells further apart:
-HTMLFORM BEGIN
<style type="text/css">
/* Override table border styling */
td { border: 1px solid white; }
a { text-decoration: none; }
/*a:visited { color: black; }*/
a:hover {text-decoration: underline; cursor: pointer; color: blue; }
</style>
-HTMLFORM END
SET EXPANDBYROW=ON
-RUN
TABLE FILE CAR
HEADING
"TEST ACCORDIAN WITH BORDER"
SUM
DEALER_COST AS 'Dealer'
RETAIL_COST AS 'Retail'
BY COUNTRY
BY CAR
BY MODEL
ACROSS SEATS AS ''
ON TABLE SET PAGE-NUM OFF
ON TABLE SET ONLINE-FMT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT,GRID=OFF, SQUEEZE=ON, PAGECOLOR='WHITE',
FONT='CALIBRI',
SIZE=10,
$
TYPE=HEADING,SIZE=9,JUSTIFY=LEFT,STYLE=BOLD,COLOR=RED,
$
TYPE=SUBTOTAL, BACKCOLOR=RGB(225 225 225), $
TYPE=DATA, BACKCOLOR=RGB(225 225 225), $
TYPE=ACROSSVALUE, STYLE=BOLD, JUSTIFY=CENTER, BACKCOLOR=RGB(225 225 225), $
TYPE=TITLE,
STYLE=BOLD,
BACKCOLOR=RGB(82 156 190),
COLOR='WHITE',
JUSTIFY=CENTER,
$
END
-RUN
Experiment with this...
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