atom-beautify/examples/simple-jsbeautifyrc/visualforce/original/page-with-outputfield.page

14 lines
496 B
Plaintext
Raw Normal View History

<apex:page standardController="Contact">
<apex:sectionHeader title="{!contact.firstname}" subtitle="{!contact.account.name}"/>
<apex:pageBlock title="Contact">
<apex:pageBlockSection title="Details">
<apex:outputfield value="{!contact.firstname}"/>
<apex:outputfield value="{!contact.lastname}"/>
<apex:outputfield value="{!contact.salutation}"/>
<apex:outputfield value="{!contact.birthdate}"/>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:page>