Blogs
-
Investigating An Integrated Async Apex Framework
Which async Apex framework is the ideal choice? This blog presents a solution that automatically selects between Batchable or Queueable Apex for your needs. Batchable and Queueable are the two predominant async frameworks available to developers on the Salesforce Platform. When working with records, you may find yourself wondering which one should you be using. In this post,…
-
Callback for Errors in A Lightning Web Component
In this section, we’ll delve into the errorCallback() function in Lightning Web Component. Sample Example parent.html parent.js child.html child.js Console Output In the console, we observe that the error is managed by the parent component due to the presence of the errorCallback() within it. Had we not included errorCallback() in the parent component, the output…
-
Lightning Component Modal Popup in Salesforce
Creating a custom Lightning Modal/Popup Box within a Salesforce Lightning component is the focus of this post. What does Modal mean in Salesforce Lightning Experience Modals/Popup Boxes serve to showcase content in a layer positioned above the application. This design is frequently utilized for tasks like creating or editing records, displaying various types of messages,…