Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 Reporting Services Development
 HyperLink Column value is not displaying with the

Author  Topic 

sivakumar
Starting Member

1 Post

Posted - 2005-11-23 : 02:18:15
Hi all,
In my Report, I am using column value with (Jump to Report) hyperlink action, while displaying it in the report, it is not displaying with default blue color. After visiting the report or URL site, it has to change back to red color.
I have checked my HTMLViewer.css file.

And I have created the custom CSS file with set of HYPERLINK color combination, but it is not displaying anything at all.

http://<myReportServer>/ReportServer/Pages/ReportViewer.aspx?rs:Command=Render&rc:Stylesheet=test.css

and test.css consist of the following

.ActiveLink:link
{
color: yellow;
text-decoration: none
}

.ActiveLink:hover
{
color: brown;
text-decoration: underline
}

.ActiveLink:visited
{
color: blue;
text-decoration: none
}

.ActiveLink:visited:hover
{
color: red;
text-decoration: underline
}

.ToolbarFind

{
display: none;
}

.ToolbarExport

{
display: none;
}

.ToolbarZoom

{
display: none;
}

.ToolbarRefresh

{
display: inline;
}
.ToolbarPrint

{
display: none;
}

Where could be the problem? Why it is not displaying hyperlink color as expected. I am using the SQL Server Reporting Services 2005 CTP and Service Pack 1.

If anyone knows this answer to this question, reply me soon.

Thanks in advance.




--------------------------------------------------------------------------------
Siva


Sivakumar
   

- Advertisement -