Skip to content

Instantly share code, notes, and snippets.

@simpluslabs
Created November 14, 2018 06:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simpluslabs/52894a2278fe73455817374e885b63cc to your computer and use it in GitHub Desktop.
Save simpluslabs/52894a2278fe73455817374e885b63cc to your computer and use it in GitHub Desktop.
<aura:component>
<!--lightningRecFormComp-->
<aura:attribute name="recordId" type="String" default="0037F000013NrfqQAC"/>
<aura:attribute name="myContact" type="List" default="[Name,Email]" />
<lightning:recordForm
recordId="{!v.recordId}"
objectApiName="Contact"
layoutType="Compact"
fields="{!v.myContact}"
columns="1"
mode="view"
onsubmit="{!c.handleSubmit}" />
</aura:component>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment