Jump to content
We've recently updated our Privacy Statement, available here ×
  • In JRS 9.0 newly added input control value not updating in Dashboad.


    Jivan Phadtare
    • Features: Dashboards Version: v9.0.0 Product: JasperReports® Server

    Issue :
     

    Create Dashboard with multiselect query input control and try to add new input control value in the database table.
    Post adding input control into table, refresh the dashboard, newly added input control not visible immediately.

     

    Resolution :
     

    In JRS 9.0 version, It looks like, we introduced the cache for Input Controls, So Input Control values now are cached.

    To make dashboard IC visible immediately after chane in database, kindly turn off the below property from file :  ...\webapps\jasperserver-pro\WEB-INF\applicationContext-cascade.xml

    Currently property value is by default set to "true" as below 

    -------------------
     <bean id="inputControlsCachingEnabled" class="java.lang.Boolean">
            <constructor-arg value="true"/>
        </bean>

    -------------------

    Kindly turn it off and set to "false"

    -------------------
        <bean id="inputControlsCachingEnabled" class="java.lang.Boolean">
            <constructor-arg value="false"/>
        </bean>

    -------------------

    Please note that, restart of Jasperserver is required to make the changes reflected.
    We have tested this and IC in dashboard appearing immediately.
     


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