리스트 구성기를 직접 생성하기

🔸 Component 직접 생성

빌더를 통한 탭 생성 이외에도 Aura Component <SBLS:ListConfigurator />를 사용하여 원하는 위치에 리스트 구성기를 추가할 수 있습니다.

<aura:component >
    <SBLS:ListConfigurator configurationid="{빌더 레코드 ID}" />
</aura:component>

🔸 Aura Component 속성

속성
설명

configurationId

빌더의 레코드 ID입니다.

height

구성기의 높이(단위: px)입니다. 기본값은 500px입니다.

parentFieldApiName

레코드 페이지의 관련 목록(Related List)으로 추가할 경우, 해당 레코드 페이지 개체와 리스트 구성기 개체 간 참조된 필드의 API명을 설정합니다.

recordId

레코드 페이지의 관련 목록으로 추가할 경우, 해당 레코드 페이지 개체의 recordId를 설정합니다.

hideFilters

설정한 필터를 숨깁니다.


🔸 Component 작성 예시

Tab을 위한 Component 생성하기

조직 또는 프로필에 IP 제한이 설정되어 있는 경우, 빌더의 탭 생성 기능을 사용할 수 없습니다. 이럴 때는 Aura Component를 직접 작성하여 탭을 생성해야 합니다.

<aura:component implements="force:appHostable">
    <SBLS:ListConfigurator configurationid="{빌더 레코드 ID}" height="null" />
</aura:component>

관련 목록을 위한 Component 직접 생성하기

기회(Opportunity) 레코드 페이지에 기회 제품(OpportunityLineItem)에 대한 리스트 구성기를 직접 Aura Component를 사용하여 삽입하려는 경우, 아래와 같이 작성합니다.

<aura:component implements="force:hasRecordId">
    <SBLS:ListConfigurator 
        configurationid="{빌더 레코드 ID}"
        parentFieldApiName="OpportunityId"
        recordId="{!v.recordId}" />
</aura:component>

Last updated

Was this helpful?