For the complete documentation index, see llms.txt. This page is also available as Markdown.

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.

<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