Home
Analytics
Visibility > Hide Element Properties
smgomes
Hi,
i had a Table element with Group to iterate a collection, but some elements has to be hide. Example:
Table:
Group Header > Label A | Label B | Label C
Details > Data A | Data B | Data C
Group Footer
In Data A, B and C in Visibility Properties i have selected Hide Element with some conditions, the problem is, when the condition is True the Data stay hide but a kind of pixel is show.....when i had 30 / 40 / 50 lines a big space white it appears :S some like this:
Label A | Label B | Label C
722 | Abc | 23.00
823 | Dce | 34.00
923 | xpt | 56.00
Any sugesttion for this problem? Thanks a lot.
Find more posts tagged with
Comments
aweaver
How is your hide element condition set up?
Are there any aggregates in the group footer?
It might be better to set up a filter at the table or data set level.
smgomes
<blockquote class='ipsBlockquote' data-author="aweaver"><p>How is your hide element condition set up?<br />
Are there any aggregates in the group footer?<br />
<br />
It might be better to set up a filter at the table or data set level.</p></blockquote>
<br />
I had SUM aggregations at Header Group, some kind of acumulator to sum all the values BEFORE the Initial Date..<br />
<br />
In details, for each data element i had this at hide element condition:<br />
<br />
if ( row["d1-3"] < row["InitialDate"])<br />
true;<br />
else<br />
false;<br />
<br />
In footer group i had SUM aggregations to sum all the values AFTER Initial Date..<br />
<br />
<br />
Thanks.
smgomes
Any suggestion?...
cheli
<blockquote class='ipsBlockquote' data-author="smgomes"><p>I had SUM aggregations at Header Group, some kind of acumulator to sum all the values BEFORE the Initial Date..<br />
<br />
In details, for each data element i had this at hide element condition:<br />
<br />
if ( row["d1-3"] < row["InitialDate"])<br />
true;<br />
else<br />
false;<br />
<br />
In footer group i had SUM aggregations to sum all the values AFTER Initial Date..<br />
<br />
<br />
Thanks.</p></blockquote>
<br />
hello, <br />
you have to change your element condition<br />
you must put this:<br />
<br />
row["d1-3"] < row["InitialDate"]<br />
<br />
i dont read all your problem, but in this moment i'm working whith visibilities and for put this condition:<br />
<br />
if(reportContext.getGlobalVariable("flag") == 1)<br />
true;<br />
else<br />
false;<br />
<br />
I only put <br />
reportContext.getGlobalVariable("flag") == 1<br />
<br />
and it works perfectly. I hope that this help