Blogs

  • How To Initiate Screen Flows Using Lightning Web Components

    In the Winter ’23 release, Salesforce introduced a fresh method to incorporate a screen flow using the new lightning-flow component into any Lightning Web Component. This empowers developers to delegate intricate input gathering and branching logic to Flow, resulting in time and cost savings. Below is an example of an LWC component featuring the Product_survey…

    Read more…

  • LWC Events – Explained Clearly

    What is an Event? Events represent occurrences, such as network activity or user interactions like button clicks, in the form of objects. In Lightning Web Components (LWC), events are based on DOM Events and can be categorized into two main types of interfaces: We highly recommend using the CustomEvent interface to create events in LWC.…

    Read more…

  • How To Retrieve Javascript Methods From A Child Component Within A Parent Component In LWC

    In this article, we’ll explore accessing JavaScript methods defined in a child component from a parent component. For simplicity, we’ll only include JavaScript code here. First Step The initial fundamental step involves exposing a public method and decorating it with @api. Public methods form a component’s API, enabling communication down the hierarchy as parent components…

    Read more…