Salesforce - 从inputfield将参数传递给控制器

时间:2017-04-05 15:06:11

标签: salesforce

如何将带有输入字段的visualforce页面中的参数传递给控制器​​?

使用inputText,但我需要inputField:

<apex:inputText id="firstname" value="{!firstname}" html-placeholder="{!Offer__c.Name__c}" disabled="true"/>
<apex:commandButton action="{!submit}" value="Submit"/>

1 个答案:

答案 0 :(得分:1)

如果您在Controller中公开了联系人记录,如下所示:

public Contact currentContact {get; set;}

然后您可以在Visualforce页面中引用它,如下所示:

您可以在此处获取更多信息apex:inputField