• Arjun Kodiala
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies

Hi, 
I have developed a VF page pdf file with renderas.  I am using Apex:Repeat tag to display  parent and child information. 

Data is showing correctly, but the alignment is not in the proper order. 

<apex:repeat value="{!Goals}" var="G">
<td> {!G.Area__c}
<td> {!G.Risk__c}
   <apex:repeat value="{!Actions}" var="A">
      <td> {!A.Description__c}
      <td> {!A.Status__c}
   </apex:repeat>
</apex:repeat>

    Apex:Repeat Alignment  Issue

Thanks.

Hi, 
I have developed a VF page pdf file with renderas.  I am using Apex:Repeat tag to display  parent and child information. 

Data is showing correctly, but the alignment is not in the proper order. 

<apex:repeat value="{!Goals}" var="G">
<td> {!G.Area__c}
<td> {!G.Risk__c}
   <apex:repeat value="{!Actions}" var="A">
      <td> {!A.Description__c}
      <td> {!A.Status__c}
   </apex:repeat>
</apex:repeat>

    Apex:Repeat Alignment  Issue

Thanks.