禁用保存按钮的工作

时间:2012-06-11 17:52:03

标签: salesforce apex-code

我在此页面控制器中完成了一个VF页面。我写了一个查询来获取一些记录。如果条件为假,则显示错误消息。如果显示错误消息,那么我想禁用保存按钮的工作。

是否可以启用保存按钮的工作,或禁用保存按钮?在Apex代码中。

1 个答案:

答案 0 :(得分:1)

<apex:commandbutton>disabled属性可以设置为启用/禁用按钮。将此属性设置为绑定的Apex变量可让您控制是否在Apex ControllerExtension中启用了该按钮。

Visualforce标记示例:

<apex:commandbutton action="{!save}" value="Save" id="theButton" disabled="{!myApexBooleanVariable}" />

示例控制器或扩展Apex代码:

public Boolean myApexBooleanVariable {get;set;}