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

17 lines
600 B
Plaintext
Raw Normal View History

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