Syntax to pass multiple parameters for a multi-select cascading input control between dashboards?
Posted on March 20, 2023 at 1:42pm
So I have found that it is possible to pass linked parameters in Jasper Server between dashboards by embedding them in the hyperlinked URL as variables. However, I am unsure of the syntax to chain multiple together.
The method is referenced in the JasperServer User Guide Pg 45
For instance, would I do this for an image hyperlink to another dashboard?
repo:/public/TestFolder/TestDashboard?$P{"CountryName=", CountryName, ? "&"}?$P{"StateName=", StateName, "&"}?$P{"CityName=", CityName, "&"}
Joined: Mar 9 2023 - 1:45pm
Last seen: 2 months 3 days ago
Posted on March 21, 2023 at 7:31am
After trial and error I have found the answer to be this:
repo:/public/TestFolder/TestDashboard?$P{"CountryName=", CountryName, ? "&"}&$P{"StateName=", StateName, "&"}&$P{"CityName=", CityName, "&"}
Should pass the parameters as multi-input variables in the URL.
Joined: Mar 9 2023 - 1:45pm
Last seen: 2 months 3 days ago