What is the purpose of extending the sObject ?
There's no inheritance to standard sObject. So, if one wants to extend the record, one need to create a wrapper to store the record inside it.How to do that ?
The wrapper is a Apex Class which will have the record and other extended fields. So, in visualforce page, both standard and extended fields can be used seamlessly.
Where is the Code ?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<apex:page controller="testclass6_22022017"> | |
<apex:sectionHeader title="Extend the Standard Opportunity Object"/> | |
<!-- Show Opportunty Standard Fields --> | |
<apex:sectionHeader subtitle="Standard Fields"/> | |
<apex:outputPanel layout="block"> | |
<apex:outputLabel value="Name - "/> | |
<apex:outputText value="{!oppWrapObj.opp.Name}"/> | |
</apex:outputPanel> | |
<apex:outputPanel layout="block"> | |
<apex:outputLabel value="StageName - "/> | |
<apex:outputText value="{!oppWrapObj.opp.StageName}"/> | |
</apex:outputPanel> | |
<!-- Show Opportunty Extended Fields --> | |
<apex:sectionHeader subtitle="Extended Fields"/> | |
<apex:outputPanel layout="block"> | |
<apex:outputLabel value="Generic Name - "/> | |
<apex:outputText value="{!oppWrapObj.genericName}"/> | |
</apex:outputPanel> | |
<apex:outputPanel layout="block"> | |
<apex:outputLabel value="Open Date - "/> | |
<apex:outputText value="{!oppWrapObj.openDate}"/> | |
</apex:outputPanel> | |
</apex:page> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class testclass6_22022017 { | |
public OpportunityWrapper oppWrapObj {get;set;} | |
public testclass6_22022017() { | |
oppWrapObj = new OpportunityWrapper(ApexPages.currentPage().getParameters().get('Id')); | |
} | |
class OpportunityWrapper { | |
Public String genericName{get;set;} | |
Public Date openDate{get;set;} | |
Public Opportunity opp{get;set;} | |
Public OpportunityWrapper(Id oppId) { | |
opp = [Select Id, Name, StageName From Opportunity Where Id =: oppId]; | |
genericName = 'Test Opp Generic Name'; | |
openDate = System.Today() + 20; | |
} | |
} | |
} |
Nice post , We are also providing the Read More Ruby on Rails Online Training
ReplyDelete