Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [closed] Row Border - CSS off

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[closed] Row Border - CSS off
 Login/Join
 
Master
posted
Hello

Below is my sample code
TABLE FILE CAR
PRINT
	COUNTRY
	CAR
	MODEL
	BODYTYPE
	SEATS
	DEALER_COST
	RETAIL_COST
HEADING
" <+0>OPCON Status<+0> <+0>Crew Availability<+0>"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS OFF
ON TABLE SET STYLE *
INCLUDE = endeflt,$
UNITS=IN, PAGESIZE='Letter', SQUEEZE=ON, ORIENTATION=PORTRAIT,$
TYPE=REPORT, FONT='ARIAL', SIZE=8, COLOR='BLACK', BACKCOLOR='NONE', $
TYPE=HEADING, HEADALIGN=BODY, $
TYPE=HEADING, SIZE=8,BORDER=LIGHT,BORDER-COLOR=RGB(0 0 0), COLOR=WHITE, $
TYPE=HEADING, SIZE=8,LINE=1, ITEM=2, JUSTIFY=CENTER, COLSPAN=2, BACKCOLOR=RGB(70 70 70), $
TYPE=HEADING, SIZE=8,LINE=1, ITEM=4, JUSTIFY=CENTER, COLSPAN=3, BACKCOLOR=RGB(70 70 70), $
TYPE=TITLE,BACKCOLOR=RGB(70 70 70),$
ENDSTYLE
END


This does exactly what I need. Now I want to add a line after every record.
So I added this line to the code
TYPE=DATA, COLUMN=N1, BORDER-BOTTOM=LIGHT, $

This does not show border as HTMLCSS is OFF. If its ON, other formatting is lost
Please suggest a way to get this

Thanks

This message has been edited. Last edited by: Enigma006,


8.1.05
HTML,PDF,EXL2K, Active, All
 
Posts: 484 | Registered: February 03, 2009Report This Post
Master
posted Hide Post
Try below code.
APP PATH IBISAMP

TABLE FILE CAR
PRINT
	COUNTRY
	CAR
	MODEL
	BODYTYPE
	SEATS
	DEALER_COST
	RETAIL_COST
HEADING
" <+0>OPCON Status<+0> <+0>Crew Availability<+0>"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,$
UNITS=IN, PAGESIZE='Letter', SQUEEZE=ON, ORIENTATION=PORTRAIT,$
TYPE=REPORT, FONT='ARIAL', SIZE=8, COLOR='BLACK', BACKCOLOR='NONE', $
TYPE=HEADING, HEADALIGN=BODY, $
TYPE=HEADING, SIZE=8,BORDER=LIGHT, BORDER-COLOR=RGB(255 255 255), COLOR=WHITE, $
TYPE=HEADING, SIZE=8,LINE=1, ITEM=2, JUSTIFY=CENTER, COLSPAN=2, BACKCOLOR=RGB(70 70 70), BORDER-COLOR=RGB(0 0 0), $
TYPE=HEADING, SIZE=8,LINE=1, ITEM=4, JUSTIFY=CENTER, COLSPAN=3, BACKCOLOR=RGB(70 70 70), BORDER-COLOR=RGB(0 0 0), $
TYPE=TITLE,BACKCOLOR=RGB(70 70 70),$
TYPE=DATA, COLUMN=N1, BORDER-BOTTOM=LIGHT, $
ENDSTYLE
END

 
Posts: 542 | Location: Dearborn, MI | Registered: June 03, 2009Report This Post
Master
posted Hide Post
hello Ram

I know the below solution and that is what I mentioned in my post. I don't want to turn HTMLCSS ON because it creates a line gap between column titles and grouping titles that are provided in the HEADING.

I am looking for alternate way to get line for each row.

quote:
Originally posted by Ram Prasad E:
Try below code.
APP PATH IBISAMP

TABLE FILE CAR
PRINT
	COUNTRY
	CAR
	MODEL
	BODYTYPE
	SEATS
	DEALER_COST
	RETAIL_COST
HEADING
" <+0>OPCON Status<+0> <+0>Crew Availability<+0>"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,$
UNITS=IN, PAGESIZE='Letter', SQUEEZE=ON, ORIENTATION=PORTRAIT,$
TYPE=REPORT, FONT='ARIAL', SIZE=8, COLOR='BLACK', BACKCOLOR='NONE', $
TYPE=HEADING, HEADALIGN=BODY, $
TYPE=HEADING, SIZE=8,BORDER=LIGHT, BORDER-COLOR=RGB(255 255 255), COLOR=WHITE, $
TYPE=HEADING, SIZE=8,LINE=1, ITEM=2, JUSTIFY=CENTER, COLSPAN=2, BACKCOLOR=RGB(70 70 70), BORDER-COLOR=RGB(0 0 0), $
TYPE=HEADING, SIZE=8,LINE=1, ITEM=4, JUSTIFY=CENTER, COLSPAN=3, BACKCOLOR=RGB(70 70 70), BORDER-COLOR=RGB(0 0 0), $
TYPE=TITLE,BACKCOLOR=RGB(70 70 70),$
TYPE=DATA, COLUMN=N1, BORDER-BOTTOM=LIGHT, $
ENDSTYLE
END



8.1.05
HTML,PDF,EXL2K, Active, All
 
Posts: 484 | Registered: February 03, 2009Report This Post
Expert
posted Hide Post
As the manual states(of course, looks like a drill column):
  
TABLE FILE IBISAMP/CAR
PRINT
	COUNTRY
	CAR
	MODEL
	BODYTYPE
	SEATS
	DEALER_COST
	RETAIL_COST
  BY COUNTRY NOPRINT
HEADING
" <+0>OPCON Status<+0> <+0>Crew Availability<+0>"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS OFF
ON TABLE SET STYLE *
INCLUDE = endeflt,$
UNITS=IN, PAGESIZE='Letter', SQUEEZE=ON, ORIENTATION=PORTRAIT,$
TYPE=REPORT, FONT='ARIAL', SIZE=8, COLOR='BLACK', BACKCOLOR='NONE', $
TYPE=HEADING, HEADALIGN=BODY, $
TYPE=REPORT, COLUMN=N2, STYLE=UNDERLINE,$
TYPE=HEADING, SIZE=8,BORDER=LIGHT,BORDER-COLOR=RGB(0 0 0), COLOR=WHITE, $
TYPE=HEADING, SIZE=8,LINE=1, ITEM=2, JUSTIFY=CENTER, COLSPAN=2, BACKCOLOR=RGB(70 70 70), $
TYPE=HEADING, SIZE=8,LINE=1, ITEM=4, JUSTIFY=CENTER, COLSPAN=3, BACKCOLOR=RGB(70 70 70), $
TYPE=TITLE,BACKCOLOR=RGB(70 70 70),$
ENDSTYLE
END
-EXIT


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
 
Posts: 1972 | Location: Centennial, CO | Registered: January 31, 2006Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [closed] Row Border - CSS off

Copyright © 1996-2020 Information Builders