Posts

Showing posts with the label Aura Components

Salesforce Developer Tools: How to work with Salesforce Lightning Inspector

Image
Looking for Salesforce Training & HandsOn Projects? Trailblazer Profile  |  LinkedIn  |  Salesforce Blog  |  Facebook  |  Youtube Channel  |  WhatsApp Community Salesforce Lightning Inspector (SLI) is a chrome extension that comes under the Developer Tools category. Being a Salesforce Lightning Component developer it is really important to get familiar with these productivity tools. SLI offers loads of vital information about the lightning applications & components running in your chrome browser. In this article, we will explore this tool and try to understand use cases where this developer tool can be a real time saver. To start with this tool, we need to find in the Chrome Store & install it as an extension to the browser. Step-1: We can google "salesforce lightning inspector" to get to the link Step-2: Most of the time you will find it as the first entry in your search results. Click on the link and go to the...

Salesforce REST API: How to Execute Bulk API Operations Using Composite Batch Resource

Image
Looking for Salesforce Training & HandsOn Projects? Trailblazer Profile  |  LinkedIn  |  Salesforce Blog  |  Facebook  |  Youtube Channel  |  WhatsApp Community Composite resource offered by Salesforce allows used to execute a series of REST API Requests in single call. Each of the child request is called as Subrequest. After the execution we will get Response Bodies & corresponding HTTP status for each subrequest with in the same call. Using this design pattern has a huge advantage of reducing number of API Calls to Salesforce. Since the whole series of requests counts as single call towards the API Limits. Possibilities are limitless so plan your solutions using the best design pattern at hand for the given piece of problem. In this blog we will discuss the implementation of “Composite/Batch” design pattern to solve a business problem. To start with this demo I am having a scenario where I need to Post some “Invoices” ...

Salesforce Aura Framework: How To Work With Aura Documentation Framework

Image
Looking for Salesforce Training & HandsOn Projects? Trailblazer Profile  |  LinkedIn  |  Salesforce Blog  |  Facebook  |  Youtube Channel  |  WhatsApp Community Documenting development artifacts are as critical as writing code for them and this fact holds well no matter in which technology stack you are dealing with. Salesforce also is no exception to this. In this article, we will discuss and see the implementations of the Aura Documentation Framework, which is a well-managed approach recommended by Salesforce to document the functionalities & behavior of Aura Components, Apps, Attributes and much more. Aura Documentation Framework is hugely dependent on the inline description capabilities of lightning tags. Few of them are ”<aura:application>” ,“<aura:component>”, “<aura:attribute>”,”<aura:event>”,“<aura:interface>”,”<aura:registerEvent>” . To start with the demo I have a simple compo...