Create a Button

You can leverage the Add Button feature at the top of the builder to add the implemented Line-Item Configurator to the Parent object's page layout.

This button will appear on the Parent object's page in Salesforce so that users can launch the Line-Item Configurator that you have set up.

Adding the component yourself

If you want to call the Line-Item Configurator 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" >   
    <SBLD:LineItemConfigurator 
        recordId="{!v.recordId}" 
        builderId="XXX..." />
</aura:component>

Attributes

Item
Description
Req.

recordId

The record ID of the Parent, as set in the Line-Item Configurator.

βœ”οΈ

builderId

The record ID of the Line-Item Configurator.

βœ”οΈ

Last updated