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:…
March 2018
-
-
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”…
-
Salesforce Model-View-Controller (MVC) pattern contains below three modules: Model View Controller 1. Visual Force pages, Page Layouts, Tabs comes under View Layer of Model View controller . 2. Workflows, Apex Classes,…
-
Salesforce Certified Administrator – Summer 17 Release Exam What action can be taken in Lightning, if you receive an approval request that someone else should approve? Delete the associated record. Change…