Hi Experts,
I'm trying to send two parameters from Dashboard 1 to dashboard 2, dashboards were created using Pentaho cde:
'url'+'?Param1='+abc'&?Param2='+123
I'm trying to get the Parameters using two custom Parameters in using below functions for each within Javascript code:
Custom Parameter1:
Param1 = Dashboards.getQueryParameter("Param1");
Custom Parameter2:
Param2 = Dashboards.getQueryParameter("Param2");
But i'm able to get the values only for Param1 but not for Param2. Please suggest way to resolve the issue.
Thanks,