Salesforce Trailhead Vanity URLs
1. Go to Profile. 2. Click Edit in About Me Section. 3. Enter your name or fancy title for your profile link.
1. Go to Profile. 2. Click Edit in About Me Section. 3. Enter your name or fancy title for your profile link.
1. Go to External Objects. 2. Edit both the objects to change the API names as below. Cheers!!!
Use the below code: Controller Code: ({ getCase: function(cmp){ var action = cmp.get("c.getCaseFromId"); action.setCallback(this, function(response){ ....
Use the below codes Component Code: <aura:component > <ui:inputNumber aura:id="InputOne"/> <ui:inputNumber aura:id="InputTwo"/> <ui:inputNumber aura:id="InputThree"/> <ui:outputNumber aura:id="totalValue"/> <aura:handler name="init" value="{!this}" action="{!c.calculate}"/> </aura:component> Controller ....
Use the below codes Component Code: <aura:component > <ui:inputNumber aura:id="InputOne"/> <ui:inputNumber aura:id="InputTwo"/> <ui:inputNumber aura:id="InputThree"/> <ui:outputNumber aura:id="totalValue"/> <aura:handler name="init" value="{!this}" action="{!c.calculate}"/> </aura:component> Controller ....
Use the below code Component Code: <aura:component> <aura:registerEvent name="message" type="c:PhoneNumberEvent"/> <aura:handler event="c:PhoneNumberEvent" action="{!c.answer}"/> <aura:attribute name="number" type="String" default="No Phone Number"/> <ui:outputText aura:id="phone" value="{!v.number}"/> ....
Use the below Controller Code: ({ send : function(component, event, helper) { var phone = component.find("phone").get("v.value"); console.log(phone); $A.get("event.c:PhoneNumberEvent").setParams({ ....
Sample Code: <apex:page docType="html-5.0" standardController="Opportunity" title="Detals"> <apex:outputPanel rendered="{!if(Opportunity.stagename=='Prospecting',true,false)}"> This is prospecing tips </apex:outputPanel> <apex:outputPanel rendered="{!if(Opportunity.stagename=='Needs Analysis',true,false)}"> This is without ....
Sample Code: <apex:page docType="html-5.0" standardController="Opportunity" title="Detals"> <apex:outputPanel rendered="{!if(Opportunity.stagename=='Prospecting',true,false)}"> This is prospecing tips </apex:outputPanel> <apex:outputPanel rendered="{!if(Opportunity.stagename=='Needs Analysis',true,false)}"> This is without ....
If you face "The 'My Data' Lightning App was not found", do the following. 1. Register in My Domain. 2. Install the Package only after successful domain registration. You will ....