You need to sign in to do that
Don't have an account?
RoyGilad
Apex:facet header disappear on repeat
Hi Community,
I building a table in VF and I'm using repeat to build it, when doing it I'm getting the values with no problem however the Headers don't apper
My vf is:
Any idea how to solve it?
Thanks!
I building a table in VF and I'm using repeat to build it, when doing it I'm getting the values with no problem however the Headers don't apper
My vf is:
<apex:pageBlock > <apex:pageblocktable id="SLACube" value="{!KPICube}" var="record" rendered="true"> <apex:column > <apex:facet name="header"> </apex:facet> <apex:outputText value="{!record.UserName}" /> </apex:column> <apex:repeat value="{!record.amountPerScore}" var="key"> <apex:column > <apex:facet name="header"># of {!key}</apex:facet> <apex:outputText value="{!record.amountPerScore[key]}" /> </apex:column> </apex:repeat> </apex:pageblocktable> </apex:pageBlock>
Any idea how to solve it?
Thanks!
Also can you try to put your repeat tag inside the column tag
Your issue looks similar to the below link
https://developer.salesforce.com/forums/?id=906F000000097gzIAA
Also screen shot of the output would help
Let me know how you go