Created
November 23, 2018 06:46
-
-
Save simpluslabs/26ff292b2db3b524ee86463a457dbc0c 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="force:appHostable,flexipage:availableForRecordHome"> | |
<!--forceRefreshViewFireComp--> | |
<aura:attribute name="fieldList" type="List" default="LastName, FirstName" /> | |
<lightning:card title="Create Contact"> | |
<div class="slds-m-horizontal_small"> | |
<lightning:recordForm | |
objectApiName="Contact" | |
layoutType="Compact" | |
columns="2" | |
mode="edit" | |
onsubmit="{!c.createContact}" /> | |
</div> | |
</lightning:card> | |
</aura:component> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment