Category Archives: Lightning Components

Discussion about only related to Lightning Components.

How to use Map in Lightning Component?

Map: This is an collection of Key-Value pair items. A Map can’t contain duplicate keys. How to use Map in Lightning Component? A. How can we define and access the Map in Lightning Component? B. How can we define and … Continue reading

5,088 total views, no views today

Posted in Lightning Components | Leave a comment

How to use List in Lightning Component?

List: This is an ordered collection of items. A List can contain duplicate values. We can directly iterate List in Lightning Component. How to use List in Lightning Component? Step 1:  Need to write a Selector Apex Class which will … Continue reading

7,384 total views, 1 views today

Posted in Lightning Components | Leave a comment

Call Lightning Component from Flow

Call Lightning Component from Flow In this section, we will call a Lightning Component from a Flow. Same Assignment: Create a Contact by Lightning Component calling from a Flow. To do this assignment, we will use Lightning Data Service. Step … Continue reading

2,758 total views, no views today

Posted in Lightning Components | Leave a comment

Call Flow from Lightning Component

Call Flow from Lightning Component In this section, we will call a Flow from a Lightning Component. Same Assignment: Create a Contact by Flow calling from Lightning Component. Step 1: Create a flow from Cloud Flow Designer. Already, we have … Continue reading

5,172 total views, no views today

Posted in Lightning Components | Leave a comment

Flow distribution for Lightning Record Page

Flow distribution for Lightning Record Page In this section, we will learn how to refer flow in Lightning Record Page. We will create a contact record from an account by flow placing in account record page in Lightning Experience. Basic … Continue reading

2,159 total views, no views today

Posted in Lightning Components | Leave a comment

How to use global value providers?

Global Value Providers: Salesforce has provided some global value providers to be used in Lightning Component expressions. So, you don’t need to write your own methods to take the Browser Information, Custom Labels etc.. 7,528 total views, no views today

7,528 total views, no views today

Posted in Lightning Components, Salesforce Lightning | Leave a comment

Lightning Component Rendering Lifecycle – How to use render.js file?

What is Document Object Modal(DOM)? DOM is nothing but a programming API for HTML and XML documents. DOM is the logical structure(i.e., tree) of the documents. Now question is, how can we update the DOM structure created by pre-defined  Lightning Component? … Continue reading

49,368 total views, no views today

Posted in Lightning Components | Leave a comment

Lightning Component – Server Side Implementation in a Smart Way

For this training purpose, we are showing the contact records with respect to an account on the Account Lightning Record Page. We are using aura:iteration with html table for training purpose. Please use lightning base components such as lightning:dataTable in … Continue reading

9,497 total views, no views today

Posted in Lightning Components | Leave a comment

Advanced Event Communication – Application Event Propagation

Event Propagation is a way of communication in your application. Following are the phases supported in event communication 1. Capture Phase: The event is captured from application root to the source component. [top to bottom]. 2. Bubble Phase: The event … Continue reading

10,927 total views, no views today

Posted in Lightning Components | Leave a comment

Advanced Event Communication – Component Event Propagation

Event Propagation is a way of communication in your application.  Following are the phases supported in event communication 1. Capture Phase:  The event is captured from application root to the source component. [top to bottom]. 2. Bubble Phase:  The event … Continue reading

3,760 total views, no views today

Posted in Lightning Components | Leave a comment