Blogs

  • Discovering Varied Approaches to Parsing JSON in Apex

    Deciphering JSON Data in Apex, Salesforce’s unique programming language, is a routine task for developers. JSON (JavaScript Object Notation) stands as a lightweight data-interchange format, designed for easy comprehension by humans and machines alike. This blog post will explore several methodologies for parsing JSON data within Apex. ⓵ Employing the Inherent JSON.deserialize() Method The simplest…

    Read more…

  • Jest For Testing Lightning Web Components

    Lightning Web Components (LWC) serves as a framework to create swift, reusable, and effective web components tailored for Salesforce. Among its standout features, LWC boasts the capability to seamlessly conduct component testing with Jest, a widely used JavaScript testing framework. This blog post delves into the significance of Jest testing for LWC, the steps to…

    Read more…

  • How can modal pop up be shown in LWC

    In AURA components, lightning:overlayLibrary allows displaying messages in modals and popovers. However, this functionality isn’t available in LWC. This tutorial will guide us through creating a modal/popup in LWC. Modals serve to showcase content above the application, often utilized for actions like creating/editing records or displaying messages. For additional information, please visit: https://www.lightningdesignsystem.com/components/modals/ The modal…

    Read more…