2015-05-21 13:44:19 -06:00
|
|
|
<apex:page standardController="Contact">
|
2015-06-25 06:06:05 -06:00
|
|
|
|
2015-06-10 10:11:20 -06:00
|
|
|
<apex:sectionHeader subtitle="{!contact.account.name}" title="{!contact.firstname}"/>
|
2015-06-25 06:06:05 -06:00
|
|
|
|
|
|
|
<apex:form >
|
2015-06-10 10:11:20 -06:00
|
|
|
<apex:pageBlock title="Contact">
|
|
|
|
<apex:pageBlockSection title="Editing">
|
|
|
|
<apex:inputfield value="{!contact.firstname}"/>
|
|
|
|
<apex:inputfield value="{!contact.lastname}"/>
|
|
|
|
<apex:inputfield value="{!contact.salutation}"/>
|
|
|
|
<apex:inputfield value="{!contact.birthdate}"/>
|
|
|
|
<apex:commandButton action="{!save}" value="Save"/>
|
|
|
|
</apex:pageBlockSection>
|
|
|
|
</apex:pageBlock>
|
2015-05-21 13:44:19 -06:00
|
|
|
</apex:form>
|
2015-06-25 06:06:05 -06:00
|
|
|
|
2015-05-21 13:44:19 -06:00
|
|
|
</apex:page>
|