Enable Contacts to Multiple Accounts in Salesforce Lightning Experience This post I would like to show the following topics: 1) How to Enable Contacts to Multipl Accounts (Setup -> Account …
SFDC Lightning
- ConfigurationLightningSALESFORCESalesforce ConfigurationSalesforce.com
-
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 …
-
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” …