Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Hide Grid/Table based on cascaded parameter value
RahulD
Hi All,
Is it possible to hide Grid/Table based on Cascaded report parameter value.
I have checked with the same but it doesnot work.
But if report parameter has static values then it works fine.
Can i find any direction regarding the same problem!
Thanks in Advance.
RahulD
Find more posts tagged with
Comments
RahulD
Cascsded parameter
1) "Report Type"
2) "Report IDs" based on "Report Type"
beforeFactory() script
ModelTable = reportContext.getReportRunnable().designHandle.getDesignHandle().findElement("Model");
if (params["Report IDs"].value != 'Asset Availability')
{
ModelTable.drop();
}
RahulD
OR
---
Cascsded parameter
1) "Report Type"
2) "Report IDs" based on "Report Type"
beforeFactory() script
ModelTable = reportContext.getReportRunnable().designHandle.getDesignHandle().findElement("Model");
if (params["Report Type"].value != 'Stastical Reports')
{
ModelTable.drop();
}
mwilliams
Hi RahulD,
So, your above posts work for your issue?