Focal Point
[CLOSED] How to set the Border for the entire Report ??

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/3411045452

October 29, 2007, 06:12 AM
Gobinath Velusamy
[CLOSED] How to set the Border for the entire Report ??
Hi I am using the Border to alignment in HTML ... It is working fine for Heading and the data separtely .... But i want Entire Report to be boared .... how to achive this one?


Thanks in Advance

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


WebFOCUS 7610
Windows
October 29, 2007, 09:20 AM
GamP
Something like this maybe?

TABLE FILE CAR
SUM
     DEALER_COST
     RETAIL_COST
     SALES
BY COUNTRY NOPRINT
BY SEATS
HEADING
"SALES REPORT FOR COUNTRY <COUNTRY"
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE HOLD FORMAT HTMTABLE
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
     UNITS=IN,
     SQUEEZE=ON,
     ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
     GRID=OFF,
     FONT='TIMES NEW ROMAN',
     SIZE=10,
     COLOR='BLACK',
     BACKCOLOR='NONE',
     STYLE=NORMAL,
$
TYPE=HEADING,
     JUSTIFY=CENTER,
$
TYPE=REPORT,
     COLUMN=N6,
     WRAP=8.000000,
$
TYPE=REPORT,
     COLUMN=N7,
     WRAP=8.000000,
$
ENDSTYLE
END
-RUN
-HTMLFORM BEGIN
<HTML><BODY>
<TABLE STYLE='border-style: solid;  border-width: 2px;'><TR><TD>
!IBI.FIL.HOLD;
</TD></TR></TABLE>
</BODY></HTML>
-HTMLFORM END



GamP

- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
October 13, 2010, 12:47 PM
John_Edwards
This still leaves a big pile of extra material on the left and right-hand sides of the report in the output. Is there a way to have the border actually match the edge of the background color for the report? This seems like a pretty basic piece of functionality that I can't figure out how to make happen.

J.



October 13, 2010, 01:57 PM
Ram Prasad E
If its static report, then try OBJECT=BOX or OBJECT=LINE with DHTML output.
TABLE FILE CAR
SUM
     DEALER_COST
     RETAIL_COST
     SALES
BY COUNTRY NOPRINT
BY SEATS
HEADING
"SALES REPORT FOR COUNTRY <COUNTRY"
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT DHTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
     UNITS=IN,
     SQUEEZE=ON,
     ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
     GRID=OFF,
     FONT='TIMES NEW ROMAN',
     SIZE=10,
     COLOR='BLACK',
     BACKCOLOR='NONE',
     STYLE=NORMAL,
$
OBJECT=BOX, POSITION=(0.20 0.25), DIMENSION=(3.4 1.9), BORDER-COLOR='RED',
$
TYPE=HEADING, JUSTIFY=CENTER,
$
ENDSTYLE
END




WebFOCUS 8.1.05
Windows
http://ibiwebfocus.wordpress.com
https://www.facebook.com/groups/ibi.webfocus/
October 13, 2010, 03:32 PM
Prarie
Nice