atom-beautify/examples/simple-jsbeautifyrc/visualforce/expected/page-with-inputfield.page

17 lines
594 B
Plaintext
Raw Normal View History

<apex:page standardController="Contact">
2015-06-25 06:06:05 -06:00
<apex:sectionHeader title="{!contact.firstname}" subtitle="{!contact.account.name}"/>
2015-06-25 06:06:05 -06:00
<apex:form >
<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 value="Save" action="{!save}"/>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
2015-06-25 06:06:05 -06:00
</apex:page>