Focal Point
[SOLVED]: AHTML COLUMN BORDER

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

February 01, 2017, 09:45 PM
BM
[SOLVED]: AHTML COLUMN BORDER
hi,
Is there a way to show Column Border when using AHTML output.
I tried a few stylesheets but none of them are showing Column borders.

Thanks

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


WebFOCUS 8202M
February 02, 2017, 09:46 AM
SeyedG
Hi BM,
Check this link. I just tried it and Greg's suggestion worked.

DEFINE FILE CAR
  CNTRY_DIV/A100V='<DIV STYLE="border:RGB(51 51 153) ridge 1px">' | COUNTRY | '</DIV>';
END
TABLE FILE CAR
PRINT
CNTRY_DIV AS 'Country'
ON TABLE PCHOLD FORMAT AHTML
END



Seyed
February 06, 2017, 01:12 AM
Maran
BM,

Use GRID=ON option to get the borders.

  
TABLE FILE CAR
SUM 
     CAR.BODY.SALES
BY  LOWEST CAR.ORIGIN.COUNTRY
BY  LOWEST CAR.COMP.CAR
ON TABLE SET PAGE-NUM NOLEAD 
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
     INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty,
$
TYPE=REPORT,
	 GRID = ON,
$
ENDSTYLE
END



WebFOCUS 8201m
Windows,AppStudio, DevStudio,All Outputs
February 06, 2017, 05:00 PM
BM
Thanks all


WebFOCUS 8202M