You need to sign in to do that
Don't have an account?

Render Apex:Column the Header goes away?? Help
Hi my header name goes away when I render the column but the value comes up???
<apex:column rendered="{!dd.TermD='9.2'}">
<apex:facet name="header">Subject Area</apex:facet>
<apex:outputText value="{!dd.Subject}"/>
</apex:column>
Thanks
did you try it this way?
Any Answers on this?
e.g. When I use following code the header disappears,because my rendered attribute refers to var property
However, when I remove the var property from rendered attribute, it works fine.
Like this,
Basically, inidividual rows can be rendered using var property but header cannot be. Hope this helps!
Thanks,
Prem
rendered="{!OR(dd.TermD='9.2',id=''),true,false}"
This checks to see if there is an ID in the field (which there is not in a header field) and displays the data
Hope this helps?