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 table problem
purushdk
Hi,
I am using birt 2.3 i have implemented list box parameter where we can select multi values as a parameter, each parameter i have separate table content, if based on parameter i am displaying table content.
other tables i am disabling using visibility property, if we select single parameter including header content it displaying.
but when we select multiple parameter first table content displaying properly, from second table headings its not displaying.
please provide solution.
Thanks,
k.purushothaman
Find more posts tagged with
Comments
JasonW
Can you post the report?
Jason
purushdk
Hi
I am pasting code fro your reference
<expression name="valueExpr">if(row["ddstatus"]=="1"){
false
}
else
{
true
}</expression>
Thanks,
k.purushothaman
JasonW
Still need the report. Keep in mind when referencing multivalue parameters use this syntax<br />
<br />
params["parmorders"].value
;<br />
<br />
where i is the number of the selection you want. You can get the length like:<br />
var parmcount = params["parmorders"].value.length<br />
<br />
Jason