Jump to content
We've recently updated our Privacy Statement, available here ×
  • Hyperlink not visible in report output


    okyrychenko
    • Features: Reports Version: v5.6.1 Product: JasperReports® Library

    Issue Description

    Hyperlinks in reports are not visible when report output is rendered on the UI. Though the functionality is working, since clicking on particular field with a hyperlink opens the required result. This is happening across all reports with JasperReports v5.6.1. In older versions, the hyperlinks were clearly noticeable on the report UI with a different color.


    Resolution

    That is a known issue. You can easily fix it : just add the following to your overrides_custom.css in your theme:

    ._jrHyperLink {
        text-decoration: underline;
        color: #0000EE;
    } /* unvisited link */
    
    ._jrHyperLink:link    { color: #0000FF; } /* visited link    */
    ._jrHyperLink:visited { color: #800080; } /* mouse over link */
    ._jrHyperLink:hover   { color: #FF00FF; } /* selected link   */
    ._jrHyperLink:active  { color: #FF0000; }
    

    Ref. Case 00059407


    User Feedback

    Recommended Comments

    There are no comments to display.



    Guest
    This is now closed for further comments

×
×
  • Create New...