How to subscribe to platform events in LWC?

Related Post

How to load external JS/CSS in LWC that imported in Static Resource?

In order to import the external or third party js or CSS in to LWC, We have to import them into Salesforce as static resource first. Then we need to import that file using loadScript and loadStyle methods and by referring file path inside the static resource. We need to import loadScript and loadStyle methods […]

How to refer Content Asset file in to LWC?

In order to bring/refer a Salesforce content file into LWC, You need to import it through ‘@salesforce/contentAssetUrl’ module. Syntax: import ASSETFILENAME from ‘@salesforce/contentAssetUrl/fileName’; Here ASSETFILENAME holds the data of the file and you can refer that in the HTML or assign it to any var in js and refer that var in HTML.

How to refer or import the custom Labels in LWC?

In order to bring/refer custom labels inside LWC component, You need to import it through ‘@salesforce/label’ scoped module. Sytax: import lableName from ‘@salesforce/label/NameSpace.labelNameThatWasCreatedInSFDC’; Note: Here the NameSpace will be ‘c’ for the Labels that were created without a namespace in SFDC. If the label was created with in a package, Then we have to given […]