- June 1 2023
- Sruvi IT
Custom Toast Notifications in Salesforce LWC
We will create custom toast messages used to display error, warning, or success messages using LWC. Import ShowToastEvent from the lightning/platformShowToastEvent module to use the Toast notification. Import the required modules in your LWC component’s JavaScript file: Example : import { LightningElement } from ‘lwc’; import { ShowToastEvent } from ‘lightning/platformShowToastEvent’; Inside your component’s JavaScript […]
Read More