Last active
July 19, 2018 10:28
-
-
Save amitkumarRoy/c13606287e5170d8be761a39bd037b5f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<aura:component implements="flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId" access="global"> | |
<aura:attribute name="fieldsArray" type="String[]" | |
default="['Name','Email','Phone','AccountId']" /> | |
<aura:attribute name='recordId' type="Id" /> | |
<lightning:recordForm aura:id="recordForm" | |
recordId="{!v.recordId}" | |
objectApiName="Contact" | |
fields="{!v.fieldsArray}" | |
mode="view" | |
/> | |
</aura:component> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment