我正在使用Apex创建应用程序。我有一个Apex表单,每次单击VF页面中的“更新”按钮时都需要更新Invoice inputField值。一旦我添加了Invoice记录的id,我就可以看到该值。但是我无法在apex:inputField中编辑该值。这是我的Apex代码
<apex:page standardController="Invoice_Statement__c">
<apex:Form >
<h1>Congratulations</h1><br/><br/>
Hello,<b>{!$User.FirstName}</b><br/>
Invoice Value is <apex:inputField value="{!Invoice_Statement__c.Invoice_Value__c}" /><br/><br/>
<apex:commandButton action="{!save}" value="Update Invoice Value"/>
</apex:Form>
</apex:page>