Lightning Web Components are a modern framework for building fast, reusable, and lightweight components on the Salesforce platform. Built using standard web technologies like HTML, JavaScript, and CSS, LWCs offer a powerful way for developers to create dynamic, responsive user interfaces.

LMS is the first Salesforce technology which enables VF pages to communicate with Lightning Components anywhere in lightning pages including utility components.

Pub Sub Model Is used to transfer the information between the component which are not in the same DOM hierarchy what does this meant that the components are not connected/related with each other using parent-child relationship.

Use Case: - The company called XYZ is using many ( 100+ ) lightning web components and out of 20+ LWC are using dependent pick-list. As a developer, you have been asked to develop a generic ( reusable ) component which can work for any objects & for any component.

Hey there, Welcome back 🙂 . Here in this blog post, we are going to develop a custom reusable lookup using SOSL. Step 1 – Create ‘lwcsearchcomponent‘ component and use below code lwcsearchcomponent.html lwcsearchcomponent.js Step 2 – Create ‘lwcrecordlist‘ component…

Hi Trailblazer, I came across a scenario where I need to refresh the whole page after we perform the logic from an inline LWC. After hitting hard I found below solutions. Use Web Component inside Aura Component and then dispatch…

Hi Folks, In this Post, we will learn how we can get the picklist field values in our Lightning Web Component using JavaScript Controller. We do not need to write a single line of apex code. We will utilize the…

Hi Developers, Welcome again and in this tutorial we will see how we can share the code between Lightning Web Components. To share code between components, create an ES6 module and export the variables or functions that you want to…