2021

Salesforce

How to navigate to Related List using Lightning Web Component(LWC) in Salesforce?

In lightning/navigation, standard__recordRelationshipPage can be used to navigate to Related List using Lightning Web Component(LWC) in Salesforce. Sample Code: HTML: <template> <lightning-card> <lightning-button label={buttonLabel} variant="brand" onclick={navigateToRelatedList}> </lightning-button> </lightning-card> </template> JavaScript: ....