Utilizing the Editor’s Aura Component

Adding the component yourself

If you want to call the Line Item Editor from somewhere other than the button, you can insert <SBLD:LineItemConfigurator /> as shown below.

Currently, only the Aura Component is available.

<aura:component implements="force:lightningQuickActionWithoutHeader,force:hasRecordId" >   
    <SBLI:LineItemConfigurator 
        builderId="XXX..." 
        recordId="{!v.recordId}" />
</aura:component>

Aura Component Attributes

Attribute
Description
Required

recordId

The record ID of the Parent, as set in the builder.

builderId

The record ID of the builder.

Last updated