我正在使用 Apex 制作应用程序。我有一个 Apex 表单,每次单击 VF 页面中的更新按钮时都需要更新 Invoice inputField 值。添加发票记录的 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>