Property Binding in LWC with the lwc:spread Directive

Introduction With the Salesforce Summer ’23 release, Lightning Web Components (LWC) have become even more powerful and flexible with the introduction of the lwc:spread directive. This new feature makes it easier to pass multiple properties from a parent component to a child component, streamlining your code and enhancing its maintainability. …

Update Salesforce Records Using LWC and lightning/uiRecordApi Without Apex

In Salesforce, you often need to update records directly from a Lightning Web Component (LWC). Traditionally, this might involve writing Apex methods, but with the lightning/uiRecordApi, you can update records directly without writing any Apex logic. This post will guide you through the process step by step. Introduction The lightning/uiRecordApi …

Salesforce Winter ’25 Release: New Features for Admins & Developers

Salesforce continually enhances its platform through seasonal releases that occur thrice yearly: Spring, Summer, and Winter. Each release brings new features and improvements aimed at refining user experience and boosting efficiency. The Winter ’25 Release upholds this tradition, introducing exciting updates designed to streamline processes and enhance productivity. Exploring Winter …

Lightning Record Picker LWC: Simplify Your Salesforce Searches

When working with Salesforce, efficiently finding and selecting records is crucial for maintaining productivity. The lightning-record-picker component is a powerful tool that allows you to search for a list of Salesforce records that match your search input. It leverages the GraphQL wire adapter to search for records, displays the results, …