How to Capture Salesforce Base URL Without using Apex in Aura Component or Lightning Web Component? This blog post describes about to get the Salesforce Base URL without using URL…
Lightning Component
- APEXLightningLightning Web ComponentSALESFORCE
- LightningLightning Web ComponentSALESFORCESalesforce ConfigurationSalesforce Customization
How to call Lightning Web Comopnent from Salesforce QuickActions
How to call Lightning Web Comopnent from Salesforce QuickActions This post describes about to invoke the Lightning Web Components in QuickActions, as of now there is no possibility to Select…
-
Create Lightning Web Components – Trailhead Project Trailhead Project – to create first lightning web components using visual studio online, sfdx – https://trailhead.salesforce.com/content/learn/projects/quick-start-lightning-web-components Step 1: sign up for a Pre-Release Developer Edition…
-
Usage of My Domain Creation in Salesforce What Is My Domain in Salesforce? My Domain is sort of like creating your own company name/empire within the Salesforce org. It’s a…
-
Salesforce Lighting Component References To Get your salesforce organization Components source code, please follow the below steps to identify easily with explanations: Step1: Login to your Salesforce Org (Developer/Sandbox/Production) Step2:…
-
Simple Addition, Subtraction Calculation Using Salesforce Lightning Components To simple calculation using Lightning Components. Calculate two number values using lighting components. Components: Create 3 attribute with the type as…
- LightningSALESFORCESalesforce.com
Passing parameters from Lightning Component to Controller and Controller to Component
Passing parameters from Lightning Component to Controller and Controller to Component In this example to learn about to pass parameters from Lightning component to controller vice versa By using component.get(v.attributeName) or component.find(“aura:id”).get(“v.value”) ->pass value from…
-
7 Excellent Features in Lightning Experience 1. Console App 2. Kanban 3. Dialer 4. Report builder 5. Dynamic pages 6. Workspaces 7. Einstein lead scoring
-
Value Binding with html elements in lightning Component HTML Markup: <a href=”javascript:void(0)” onclick=”{!c.onUserClick}” data-userid=”{!AccountDetail.CreatedBy.Id}”> {!AccountDetail.CreatedBy.Name} </a> Controller: onUserClick : function(component,event,helper){ var userId = event.currentTarget.getAttribute(“data-userid”); var navEvt = $A.get(“e.force:navigateToSObject”); navEvt.setParams({ “recordId”…
-
Lightning Basic Question and Answers Q1. Can we show lightning component in classic? Yes No Q2. Which part of Lightning Components are client-side? Apex Controller Lightning Controller Q3. What are…