Santanu

Santanu

Communication Types for Lightning Web Components

Same Type of Communication in Lightning Component exists in Lightning Web Component also. Following are the mechanisms to communicate between Lightning Web Components. Direct Call Lightning Web Component with certain attributes – Remember this communication is in one direction, not…

11,595 total views, 6 views today

Web Component in HTML 5

Introduction Before going to understand the Lightning Web Component, we need to focus on some basic features of Web Component introduced at the part of HTML 5. Web Components provide standard component model for the Web and allow encapsulation of…

12,688 total views, 6 views today

Lightning Testing Service with Jasmine

Lightning Testing Service:  Salesforce has already provided the Apex Testing framework to check the features in your Apex classes and triggers at the server side. Now, the question is how to test the Lightning Component at the client side. Lightning Testing…

5,609 total views, 2 views today

How to use method in Lightning Component?

You can call a method using aura:method tag in a component’s client side controller instead of using Component Event. In short, aura:method communicates down the Containment Hierarchy that means a Parent Component can call aura:method on a child component in the…

5,852 total views, 2 views today

Lightning Flow Overview

According to Salesforce, Lightning Flow consists of Process Builder and Cloud Flow Designer. Process Builder is responsible to create process when record is created/updated or any platform event is occurred. Cloud Flow Designer is used to create flows which is…

3,375 total views, 2 views today

Create Record By Lightning Data Service

Create Record By Lightning Data Service In this section, we will create a Contact Record from Account using Lightning Data Service(LDS) in Lightning Experience. Step 1: Create a component bundle named “createContactByLDS”. createContactByLDS.cmp | to create Contact record from Account…

6,095 total views, 3 views today

Load Record by Lightning Data Service

Loading record by Lightning Data Service In Lightning Experience, we will load the Account record with some attributes from Contact by Lightning Data Service. Step 1: Need to create a Lightning Component named “loadAccount“. loadAccount.cmp | It will show the…

3,530 total views, 2 views today

Lightning Data Service

What is Lightning Data Service(LDS)? -Lightning Data Service is the data layer for Lightning. We can load, create, edit or delete a particular record by LDS without calling Server/Apex Class. You can compare Standard Visualforce Controller to Lightning Data Service.…

4,678 total views, 1 views today