buli
2023-07-11 0c4796706fc9473d069b620321a54b20a119906c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
    <c-example-wrapper
        icon-name="standard:account"
        lwc="viewRecordWithParentRecordData"
        title="View Record with Parent Record Data"
        visualforce="viewRecordWithParentRecordData"
        record-id={recordId}
        visualforce-height="180px"
    >
        <c-view-record-with-parent-record-data
            record-id={recordId}
            slot="lwc"
        ></c-view-record-with-parent-record-data>
 
        <!-- prettier-ignore -->
        <p>
            Combine <a target="_blank" href="https://developer.salesforce.com/docs/component-library/documentation/lwc/data_load_record">
            base form components</a> with the <a target="_blank" href="https://developer.salesforce.com/docs/component-library/documentation/lwc/reference_wire_adapters_record.html">
            getRecord</a> LDS wire adapter to read single records and include parent record data.
        </p>
    </c-example-wrapper>
</template>