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.
Hi, Does anyone know any type of styling that can be done on long lists? For example, I am displaying a long list (1 column) of table entries that are drilldowns. The list can be from 500 up to 150,000+ rows - it varies. Instead of having the user scroll down through them all, I'd like to make it more presentable - i.e. maybe break out that long list into multiple columns instead of one long one. Any ideas?
Thx
Posts: 13 | Location: Boston | Registered: December 22, 2004
If the list breaks itself naturally into groups, the ON GROUPNAME SUBHEAD would provide a natural break. Like COUNTRY and MODEL ON COUNTRY SUBHEAD "<COUNTRY"
or.. present the report aggregated into those GROUPNAMES and let the user click on a GROUPNAME to get the same report for only the list values within that GROUPNAME. or.. if you're making a dropdown list that is long, use an <OPTGROUP LABEL= "..."> tag to break up the list.
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
susannah - thx for the suggestion but the data really cannot be grouped. i was wondering if you can group any way by record number? so, for example, records 1 - 500 are column 1, 501 - 1000 column 2, etc.
Posts: 13 | Location: Boston | Registered: December 22, 2004
DEFINE FILE CAR COL/P6 WITH MODEL = IF COL LT 4 THEN (COL + 1) ELSE 1; ROW/P6 WITH MODEL = IF COL EQ 1 THEN (ROW + 1) ELSE ROW; END TABLE FILE CAR SUM MODEL BY ROW NOPRINT ACROSS COL NOPRINT END