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.
In the fex below, how can I get 'A' to left align with COUNTRY, 'hello' to left align with CAR, and 'GOODBYE' to left align with 'Warranty'?
SET ACCESSIBLE = 508
TABLE FILE CAR
ON TABLE SET HTMLCSS ON
PRINT CAR SALES MODEL WARRANTY
BY COUNTRY
ON COUNTRY SUBHEAD
"TESTING"
HEADING
"<+0>A<+0>hello<+0>GOODBYE"
ON TABLE SET STYLE *
TYPE=HEADING,HEADALIGN=BODY,$
TYPE=HEADING,LINE=1,OBJECT=TEXT,ITEM=1,COLOR='BLUE',COLSPAN=1,POSITION=1,JUSTIFY=LEFT,$
TYPE=HEADING,LINE=1,OBJECT=TEXT,ITEM=2,COLOR='RED',COLSPAN=2,POSITION=2,JUSTIFY=LEFT,$
TYPE=HEADING,LINE=1,OBJECT=TEXT,ITEM=3,COLOR='GREEN',COLSPAN=2,POSITION=3,JUSTIFY=LEFT,$
ENDSTYLE
END
This message has been edited. Last edited by: Kerry,
TABLE FILE CAR
ON TABLE SET HTMLCSS ON
PRINT CAR SALES MODEL WARRANTY
BY COUNTRY
ON COUNTRY SUBHEAD
"TESTING"
HEADING
"<+0>A<+0>hello<+0>GOODBYE"
ON TABLE SET STYLE *
TYPE=HEADING,HEADALIGN=BODY,$
TYPE=HEADING,LINE=1,OBJECT=TEXT,ITEM=1,COLOR='BLUE',COLSPAN=3,POSITION=COUNTRY,JUSTIFY=LEFT,$
TYPE=HEADING,LINE=1,OBJECT=TEXT,ITEM=2,COLOR='RED',COLSPAN=1,POSITION=MODEL,JUSTIFY=LEFT,$
TYPE=HEADING,LINE=1,OBJECT=TEXT,ITEM=3,COLOR='GREEN',COLSPAN=2,POSITION=WARRANTY,JUSTIFY=LEFT,$
ENDSTYLE
END
If I change it to the following, A shows up over COUNTRY, not over CAR. Do you know why?
The reason I am asking is because I am trying to mimic all this and I'm just having a hard time!
TABLE FILE CAR
ON TABLE SET HTMLCSS ON
PRINT CAR SALES MODEL WARRANTY
BY COUNTRY
ON COUNTRY SUBHEAD
"TESTING"
HEADING
"<+0>A<+0>hello<+0>GOODBYE"
ON TABLE SET STYLE *
TYPE=HEADING,HEADALIGN=BODY,$
TYPE=HEADING,LINE=1,OBJECT=TEXT,ITEM=1,COLOR='BLUE',COLSPAN=2,POSITION=CAR,JUSTIFY=LEFT,$
ENDSTYLE
END
TABLE FILE CAR
ON TABLE SET HTMLCSS ON
PRINT CAR SALES MODEL WARRANTY
BY COUNTRY
ON COUNTRY SUBHEAD
"TESTING"
HEADING
" <+0>A<+0>hello<+0>GOODBYE"
ON TABLE SET STYLE *
TYPE=HEADING, HEADALIGN=BODY, JUSTIFY=LEFT,$
TYPE=HEADING, LINE=1, ITEM=2, COLOR='BLUE', COLSPAN=2,$
ENDSTYLE
END
-EXIT