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 used to automate business process by taking input from User …

3,041 total views, no 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 by LDS createContactByLDSController.js | to call the standard Save operation …

5,712 total views, 2 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 respective Account Details from the Contact record page. Step 2: …

3,205 total views, no 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. PROS 1. LDS supports sharing rules and field level security. …

4,277 total views, no views today

Convert a List from a Map in Lightning Component

Convert a List from a Map in Lightning Component In many projects, we have seen that we need to iterate a Map in Lightning component to satisfy the business requirement. But, it’s not possible in straightforward to iterate the Map at Component level. We have a solution for this. We …

8,436 total views, 11 views today

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 access the Map in Lightning Component through Server? A. How …

5,800 total views, 1 views today

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 return all the Contact Records from your organization. ContactSelector.apxc | return …

8,025 total views, no views today