Focal Point
WebFOCUS Grid vs HTML Grid

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

July 08, 2004, 10:42 PM
<Pietro De Santis>
WebFOCUS Grid vs HTML Grid
Susannah,

You may like this: WebFOCUS GRID ON, but no grid in HTML report!

TABLE FILE CAR<br />  PRINT MODEL<br />    BY  COUNTRY<br /><br />  HEADING<br />"Car Test"<br />" "<br />  ON TABLE HOLD AS 'CAROUT' FORMAT HTMTABLE<br />  ON TABLE SET PAGE NOPAGE<br />  ON TABLE SET STYLE *<br />  TYPE=REPORT, GRID=ON, FONT='Verdana', SIZE=8, $<br />  TYPE=HEADING, STYLE=BOLD, $<br />END<br />-RUN<br /><br />-HTMLFORM BEGIN<br /><br /><style type="text/css"><br />TABLE { border-collapse: collapse; /* 1px table border space */ }<br />TD    { border-style: none; }      /* Remove border */<br /></style><br /><br /><div id="div1"><br />!IBI.FIL.CAROUT;<br /></div><br />-HTMLFORM END
border-collapse: collapse; reduces the grid to 1 pixel.

border-style: none; removes the grid.

You can use neither, one or both of these CSS tags.

Regards,

Pietro.
July 09, 2004, 02:24 AM
susannah
Great! I knew you'ld come up with something cool! thanks!