Salesforce Trailhead

Salesforce

The client side controller does not get a value from the inputOne, inputTwo and/or inputThree components

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 ....

Salesforce

The page isn’t evaluating the ‘Prospecting’ stage Salesforce Trailhead

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 ....

Salesforce

The page isn’t binding a variable Salesforce Trailhead

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 ....