Comprehensive Guide to Apex Programming – Everything You Need to Know

Apex Programming Unveiling the Power of Salesforce Development Apex serves as the object oriented programming language utilized by the Salesforce platform, empowering developers to execute transactions and control statements on Salesforce-associated servers. With a syntax closely resembling Java, Apex provides a familiar programming framework for Salesforce development. Notable Aspects of Apex Programming Key Characteristics of …

Comprehensive Guide to Apex Programming – Everything You Need to Know Read More »

Modal created using the Lightning OverlayLibrary

Starting from Salesforce Spring ’18, the lightning:overlayLibrary tag was introduced to display messages using modals and popovers. This component requires API version 41.0 or later and is not supported in lightning applications. It is only supported in Salesforce Lightning Experience, Console, and Communities. In the following example, the components used are: Component – Sample JavaScript …

Modal created using the Lightning OverlayLibrary Read More »

Generate a hyperlink to a recordId in a Lightning Aura Component

The lightning:formattedUrl component renders a hyperlink with an href attribute, presenting a read-only representation of a URL. The URL can be either relative or absolute. Code Example: <aura:component> <aura:attribute name=”recordId” type=”String” default=”0063X0000146rTLQAY”/> <lightning:formattedUrl value=”{!’/’ + recordId}” tooltip=”Opportunity” label=”Opportunity” target=”_blank” /> </aura:component>

Utilize Apex for knowledge article management

Generate a fresh article. Release a draft article. Withdraw a published article. Arrange the archival of a published article. Please note that if the scheduledDate provided is null, the article will be archived immediately. Revoke the scheduled archival of a published article: Remove an article from the archive: Erase a draft article: Generate a draft …

Utilize Apex for knowledge article management Read More »