Lightning Web Components (LWC) in Utility Bar

In this post, we will implement the functionality of adding Lightning Web Components (LWC) in the Utility Bar. Utility Bar is displayed at the bottom of the page in Lightning Application and we can access it on any page. Let’s get into the implementation. Implementation In this implementation, we are creating a Form using Lightning … Read more

Handling Events of LWC in Aura Component

In this post, we will implement the functionality of Handling Events of LWC in Aura Component. We can use the Lightning Web Components inside Aura Component but vice versa is not possible. Meaning, we cannot use Aura Component inside Lightning Web Components. We can use events to communicate between the Aura Component and Lighting Web … Read more

Display Toast Notifications in LWC

In this post, we will implement the functionality to display Toast Notifications in LWC using ShowToastEvent adapter from lightning/platformShowToastEvent module. Using Lightning Web Components, we can display the same type of Toast Notifications as in Lightning Aura Component. Let’s just get right into the implementation. This is going to be a quick one. Implementation We … Read more