Hi,
does parameterPage the viewer tag lib allow setting a value for a parameter other than the one displayed as a input.
I want the values of the input parameter (ALLOWED_REPORTS_LIST in my code below) to be retrieved dynamically depending on the value i set for another parameter (REPORTS_LIST).
<birt: parameterPage id="report1" name="page1" reportDesign="IND_DSIE.rptdesign" isCustom="true" pattern="frameset">
<birt: param name="REPORTS_LIST" value="VALUE"/>
<birt: paramDef id="5" name="ALLOWED_REPORTS_LIST"/>
<input type="submit" name="submit" value="Sumbit form"/>
</birt: parameterPage>
The goal is :
1- Set the value of REPORTS_LIST parameter
2- Populate the dyanmic values of parameter ALLOWED_REPORTS_LIST from a scripted dataset that is filtered by the value of REPORTS_LIST parameter.
I want to be able to set the value of parameter REPORTS_LIST before displaying the input for ALLOWED_REPORTS_LIST parameter. The code above doesn't work

Thank you.