123
chenjingwu
2024-04-11 5f43dac2f19ed47ea4cd211a4c6c7f94e8dc0c25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<apex:page standardController="Account" recordSetVar="Accounts">
    <apex:form >
        <apex:pageblock >
            <apex:pageMessages />
            <apex:pageBlockButtons >
                <apex:commandButton value="Save" action="{!save}" />
                <apex:commandButton value="Cancel" action="{!cancel}" />
            </apex:pageBlockButtons>
            <apex:pageBlockTable value="{!accounts}" var="account">
                <apex:column headerValue="Name">
                    <apex:inputField value="{!account.Name}" />
                </apex:column>
                <apex:column headerValue="Type">
                    <apex:inputField value="{!account.Type}" />
                </apex:column>
                <apex:column headerValue="Phone">
                    <apex:inputField value="{!account.Phone}" />
                </apex:column>
                <apex:column headerValue="Employees">
                    <apex:inputField value="{!account.NumberOfEmployees}" />
                </apex:column>
            </apex:pageBlockTable>
        </apex:pageblock>
    </apex:form>
</apex:page>