Jump to content
We've recently updated our Privacy Statement, available here ×
  • Display of report names/label gets truncated in Repository


    ghudson_1
    • Version: v7.1.0 Product: JasperReports® Server

    Issue Description

    Report labels (names) that are lengthy can get cut-off from display.  

    capture_cutoff.jpg.f6c3a560cfefd9f97680055b8f9b3698.jpg


    Resolution

    There is a stylesheet that helps define the widths of fields on the repository listing page, it is lists.css.

    Stylesheets are customizable thru themes administration.  

    For general information on themes administration you can review the admin guide here:

    https://community.jaspersoft.com/documentation/tibco-jasperreports-server-administrator-guide/v71/themes

    Some quick examples can be found in the JRS Ultimate Guide, like:

    https://community.jaspersoft.com/documentation/tibco-jasperreports-server-ultimate-guide/v710/changing-colors-and-fonts

    There is a resourceName width and a resourceDescription max-width that must add up to 100.  So if you increase one, you have to decrease the other.

    For example, if you change the width of .list.resources .resourceName to 55%, you will need to change the max-width of the other to 45%. So, this could be used in your overrides_custom.css:

    .list.resources .resourceName {
        width: 55%
    }
    
    #repoSearch .list.resources .resourceDescription, 
    #repoBrowse .list.resources .resourceDescription {
        max-width: 45%;
    }

    Ref. Case 01732989

    capture_cutoff.jpg.e02b340b8c6ba3cf2ba19205d8baee35.jpg


    User Feedback

    Recommended Comments

    There are no comments to display.



    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...