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.
New TIBCO Community Coming Soon
In early summer, TIBCO plans to launch a new community—with a new user experience, enhanced search, and expanded capabilities for member engagement with answers and discussions! In advance of that, the current myibi community will be retired on April 30. We will continue to provide updates here on both the retirement of myibi and the new community launch.
What You Need to Know about Our New Community
We value the wealth of knowledge and engagement shared by community members and hope the new community will continue cultivating networking, knowledge sharing, and discussion.
During the transition period, from April 20th until the new community is launched this summer, myibi users should access the TIBCO WebFOCUS page to engage.
Run the following code and note that as you resize your IE window (click 'restore' button and drag edges of window), the 'LONG' column resizes, and you always see the entire contents:
APP PREPENDPATH IBISAMP
DEFINE FILE GGSALES
LONG/A250 = '333 3333 3333333333 33333333333 33 333 333 222 333 2222 111111111 11 1 1 333333 333 333333333333';
END
TABLE FILE GGSALES
PRINT ST
REGION
LONG
IF RECORDLIMIT EQ 3
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET LINES 10
ON TABLE SET STYLE *
TYPE=REPORT, SQUEEZE=ON,
$
END
Change the OUTPUT format to AHTML, and you will see that the 'LONG' column does NOT resize, as you change the size of the window:
APP PREPENDPATH IBISAMP
DEFINE FILE GGSALES
LONG/A250 = '333 3333 3333333333 33333333333 33 333 333 222 333 2222 111111111 11 1 1 333333 333 333333333333';
END
TABLE FILE GGSALES
PRINT ST
REGION
LONG
IF RECORDLIMIT EQ 3
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET HTMLCSS ON
ON TABLE SET LINES 10
ON TABLE SET STYLE *
TYPE=REPORT, SQUEEZE=ON,
$
END
I'm using WF 8.0.07 & IE 9.This message has been edited. Last edited by: <Kathryn Henning>,
Hi David, You can try fiddling around with WRAP and as per below with AHTML format I got interesting results !! Not quite what you were hoping for I expect.... Ian
TYPE=REPORT, SQUEEZE=ON,WRAP=ON,
_______________________ *** WebFOCUS 8.1.05M ***
Posts: 196 | Location: London, UK | Registered: December 06, 2005