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 …
SALESFORCE
-
- 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, …
- APEXSALESFORCESalesforce CustomizationSalesforce.com
Differences between web service and HTTP callouts from Apex
Differences between web service and HTTP callouts from Apex An Apex callout enables you to tightly integrate your Apex code with an external service. The callout makes a call to …
-
How to find manager list using apex class in salesforce Its possible to find out from managerId field in User Object and below is the code to find manager hierarchy …
- Interview Questions and AnswersSALESFORCESalesforce Interview QuestionsSalesforce.com
Mindtree Salesforce Interview Questions
Mindtree Salesforce Interview Questions What are the actions that can be performed in Workflow rules ? Given a business requirement, wherein you have to execute all the available actions in …
-
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 …
- Force.comSALESFORCESalesforce ConfigurationSalesforce Customization
Users Freeze or UnFreeze in Salesforce using Script
Users Freeze or UnFreeze in Salesforce using Script User Freeze/Unfreeze information captured in the UserLogin Object. User Freeze/Unfreeze is possible in two ways: Using DataLoader Execute scripts in Developer console -> …