Jump to content

I am generating a report using FEX with hyperlinks. I would ...


Chad Smith

Recommended Posts

Is your report format HTML, and are you using StyleSheet Linking

If so, maybe try CSS to color the unvisited and visited links

TABLE FILE GGSALES

HEADING

"Sales Report"

SUM DOLLARS/I08M

BY REGION

BY ST

BY STCD

ON STCD SUBFOOT

"View Store <STCD Sales By Product"

ON REGION PAGE-BREAK

ON TABLE PCHOLD FORMAT HTML

-*

ON TABLE SET STYLE *

INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/jellybean_combo.sty, $

TYPE=SUBFOOT, LINE=1, OBJECT=TEXT, ITEM=2,

FOCEXEC=PRDSALES.fex(STOREID=STCD), $

ENDSTYLE

END

-RUN

-HTMLFORM BEGIN

<style>

/* unvisited link */

a:link {

color: BLUE !important;

}

/* visited link */

a:visited {

color: PURPLE !important;

}

</style>

-HTMLFORM END

 

Before the first link is clicked:

 

After the first link is clicked:

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...