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.
Is it possible to turn off the Report title wrap for Accordian reports? It appears to wrap with the 1st column size.This message has been edited. Last edited by: Kerry,
I don't think I understand what the issue is. Coud you please post your code example?
See this:
SET EXPANDABLE = ON
TABLE FILE CAR
SUM
BODYTYPE
SEATS
BY COUNTRY AS 'A rather long title just to prove a point about WRAPPING in accordion reports'
BY CAR
BY MODEL
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, COLUMN=COUNTRY, WRAP=OFF, $
ENDSTYLE
END
WRAP has been disabled for the 1st column. I don't think it is possible to disable wrapping just for the column title.
That is usually possible by using HEADALIGN=BODY and COLSPAN=n in the Style Sheet definition of the report.
I don't know however if this is possible with accordion reports with expandable columns as I'm assuming that all columns are being hidden showing only the first one upon running the report. How would the column spanning work there if the columns it needs to span over are not visible?This message has been edited. Last edited by: njsden,
It works! though the first column is initially made wide enough to fit the whole heading in it .. as you expand new columns, the HEADING spans along.
SET EXPANDABLE = ON
TABLE FILE CAR
SUM
BODYTYPE
SEATS
BY COUNTRY
BY CAR
BY MODEL
HEADING
"A rather long title just to prove a point about using HEADLIGN=BODY and COLSPAN in accordion reports"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=HEADING, HEADALIGN=BODY, $
TYPE=HEADING, LINE=1, OBJECT=TEXT, ITEM=1, COLSPAN=3, $
ENDSTYLE
END
This message has been edited. Last edited by: njsden,