Focal Point
[CASE-OPENED] Styling the grid of an active report

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

September 02, 2014, 11:44 AM
Danny-SRL
[CASE-OPENED] Styling the grid of an active report
Has anybody been able to style the gridlines of an active report? Color? Thickness?

This message has been edited. Last edited by: <Kathryn Henning>,


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

September 02, 2014, 03:02 PM
Shakila Subhan
Using HTML Style tag we can style the grid lines

TABLE FILE CAR
PRINT CAR

DEALER_COST
BY MODEL

HEADING
""
FOOTING
""
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE HOLD FORMAT AHTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
$
TYPE=REPORT, JUSTIFY=DEFAULT, LINES-PER-PAGE=20, MENU-LOCATION=OFF,PAGE-LOCATION=OFF,$
ENDSTYLE
END
-HTMLFORM BEGIN


Inventory<BR>



!IBI.FIL.HOLD;


-HTMLFORM END


WebFOCUS 8.0.08 - BI Portal, Developer Studio, App Studio, Excel, PDF, Active Formats and HTML5
Windows, All Outputs
September 02, 2014, 04:31 PM
Francis Mariani
So where's the HTML style?

I think you need to put your code between forum code tags.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
September 02, 2014, 05:10 PM
Shakila Subhan
TABLE FILE CAR
PRINT CAR
  
  DEALER_COST 
BY MODEL

HEADING
""
FOOTING
""
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE HOLD FORMAT AHTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
$
  TYPE=REPORT, JUSTIFY=DEFAULT, LINES-PER-PAGE=20, MENU-LOCATION=OFF,PAGE-LOCATION=OFF,$
ENDSTYLE
END
-HTMLFORM BEGIN
<HTML>
<HEAD>
<TITLE>
</TITLE>
<STYLE>
TABLE { border-collapse:collapse; border-left: 0.00pt SOLID #000000; 
border-right: 1.00pt SOLID #000000; border-color=red;}
TD    { border-top: 0.00pt SOLID #000000; border-bottom: 1.00pt SOLID #000000; 
border-right: 0.50pt SOLID #000000; border-color=red;}
</style>
</HEAD>

!IBI.FIL.HOLD;

</HTML>
-HTMLFORM END






WebFOCUS 8.0.08 - BI Portal, Developer Studio, App Studio, Excel, PDF, Active Formats and HTML5
Windows, All Outputs
September 03, 2014, 11:19 AM
MartinY
Where is the Active Report functionality ?

You've style the borders but you've removed the Active functionality... Don't think that it answer the question...


WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007
September 04, 2014, 08:02 AM
Shakila Subhan
Remove MENU-LOCATION=OFF,PAGE-LOCATION=OFF to display Active Functionality


WebFOCUS 8.0.08 - BI Portal, Developer Studio, App Studio, Excel, PDF, Active Formats and HTML5
Windows, All Outputs
September 09, 2014, 12:25 PM
Danny-SRL
Shakila,
Thanks.
We'll work on it.
Nonetheless, I wish this worked without having to HOLD!


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

September 09, 2014, 12:45 PM
Francis Mariani
This might work: how about using SET CSSURL to a css file that contains the styling. Then you wouldn't have to HOLD.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server