Created
September 25, 2017 01:36
-
-
Save karanrajs/bcb69ff36081526dd7ba8a8537332502 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,force:hasRecordId" access="global" > | |
<lightning:notificationsLibrary aura:id="notifLib"/> | |
<aura:attribute name="picklistField" type="object"/> | |
<force:recordData aura:id="record" | |
layoutType="FULL" | |
recordId="{!v.recordId}" | |
targetFields="{!v.picklistField}" | |
mode="EDIT"/> | |
<lightning:picklistPath recordId="{!v.recordId}" | |
variant="non-linear" | |
picklistFieldApiName="Status" | |
onselect="{!c.handleSelect}" /> | |
</aura:component> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment