Focal Point
Fix the column width in the html report.

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

February 21, 2005, 11:04 AM
Cyril Joy
Fix the column width in the html report.
Hello All,

Hope all are doing fine.

Is it possible to fix the column width in an html report? I want all the colums to be in a fixed width.I am using WebFOCUS 5.1 reporting server for report generation.

The following commands works only with PDF reports.
TYPE = REPORT, column , SQUEEZE = {width}, $
TYPE=REPORT, [COLUMN=column], WRAP=width_measurement, $
February 21, 2005, 10:11 PM
susannah
Cyril, you can do it with some style sheet code


TABLE FILE CAR
PRINT MODEL BY CAR
ON TABLE HOLD AS MYTAB FORMAT HTMTABLE
ON TABLE SET STYLE *
TYPE=TITLE,COLUMN=MODEL,CLASS=FRED,$
END

-RUN
-HTMLFORM BEGIN


< !-- WEBFOCUS TABLE MYTAB -->
-HTMLFORM END

This message has been edited. Last edited by: <Mabel>,
February 22, 2005, 09:43 AM
Cyril Joy
Yes, that solved my issue.