Created
April 10, 2014 02:36
-
-
Save mokamoto/10338253 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<apex:page standardController="Opportunity" recordSetVar="opportunities" tabStyle="Opportunity" sidebar="false"> | |
<apex:form > | |
<apex:pageBlock > | |
<apex:pageMessages /> | |
<apex:pageBlockButtons > | |
<apex:commandButton value="保存" action="{!save}"/> | |
</apex:pageBlockButtons> | |
<apex:pageBlockTable value="{!selected}" var="opp"> | |
<apex:column value="{!opp.name}"/> | |
<apex:column headerValue="フェーズ"> | |
<apex:inputField value="{!opp.stageName}"/> | |
</apex:column> | |
<apex:column headerValue="完了予定日"> | |
<apex:inputField value="{!opp.closeDate}"/> | |
</apex:column> | |
</apex:pageBlockTable> | |
</apex:pageBlock> | |
</apex:form> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment