Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <aura:component extends="lightning:outputField">
  2. <!--...-->
  3. </aura:component>
  4.  
  5. <tbody>
  6. <aura:iteration items="{! v.Opportunities }" var="item">
  7. <tr>
  8. <td>
  9. <lightning:recordViewForm recordId="{!item.Id}" objectApiName="Opportunity">
  10. <lightning:outputField fieldName="CloseDate" variant="label-hidden" />
  11. </lightning:recordViewForm>
  12. </td>
  13. <!-- !! lots more of outputFields to come ... !! </td>-->
  14. </tr>
  15. </aura:iteration>
  16. </tbody>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement