Saving and activating

Once set up, you'll need to save and activate the configurator using the button at the top of the builder before you can start using it.

Preview

You can preview the implemented line-item configurator by using the Preview button at the top of the builder.

Add 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

ItemDescriptionReq.

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