function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jason Good 13Jason Good 13 

I have a simple VF question

Im on the getting started with visualforce module. I have written markup language before but it has been a while. in the code below, what line tell the form to put the save button at the top of the page vs the bottom? I always assumed that the code had to be placed where you wanted the button or at least have a line of code to tell it. Sorry for a simple question but i cant seem to pull the answer for myself.
 
<apex:page standardController="Contact" >
    <apex:form >
        
        <apex:pageBlock title="Edit Contact">

            <apex:pageBlockSection columns="1">
                <apex:inputField value="{!Contact.FirstName}"/>
                <apex:inputField value="{!Contact.LastName}"/>
                <apex:inputField value="{!Contact.Email}"/>
                <apex:inputField value="{!Contact.Birthdate}"/>
            </apex:pageBlockSection>

            <apex:pageBlockButtons >
                <apex:commandButton action="{!save}" value="Save"/>
            </apex:pageBlockButtons>

        </apex:pageBlock>
        
    </apex:form>
</apex:page>

 
jls_74_txjls_74_tx
<apex:pageBlockButtons location="top">

The pageBlockButtons tag has a location option.
Jason Good 13Jason Good 13
So is the default location at the top if no tage is put into the code?