Syntax to pass multiple parameters for a multi-select cascading input control between dashboards?

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, "&"}

isaach_1's picture
Joined: Mar 9 2023 - 1:45pm
Last seen: 2 months 3 days ago

1 Answer:

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.

isaach_1's picture
Joined: Mar 9 2023 - 1:45pm
Last seen: 2 months 3 days ago
Feedback