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, I have a webfocus stylesheet that I'm applying to my report to get a basic look and feel. I also want to set the size of one of my columns, which I'm doing with the WRAP style attribute in the report. However, when I apply the WRAP style to my column I lose the formating in the style sheet... Is there a way I could get the basic look and feel from the webfocus style sheet and have the flexibility to set the sizes of my columns in my report? Thanks.
Below is a sample of my code for clarification purposes:
... ON TABLE SET STYLESHEET portal ON TABLE SET PAGE-NUM OFF ON TABLE NOTOTAL ON TABLE SET ONLINE-FMT HTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * $ TYPE=REPORT, COLUMN=N2, WRAP=5, $ ENDSTYLE .....
Thank you for your reply. I tried removing ON TABLE SET STYLE *, but I get an error... my code now looks something like this: ... ON TABLE SET STYLE portal $ TYPE=REPORT, COLUMN=N2, WRAP=5, $ TYPE=REPORT, COLUMN=N1, WRAP=2, $ ENDSTYLE ...
ON TABLE SET STYLE * TYPE=REPORT, COLUMN=N2, WRAP=5, $ -INCLUDE portal2 ENDSTYLE
Where portal2 is a fex containing all the default styling. I have used this in the past. This way you can use the default styling to start and add custom changes like you need.