【发布时间】:2013-02-25 14:43:00
【问题描述】:
我有这个 JSF commandButton,用于从表中删除行:
<h:commandButton id="deleterow" value="HiddenDelete" action="#{BatteryProfileTabGeneralController.saveData}" style="display:none" update="growl">
<f:ajax render="@form" execute="@form"></f:ajax>
</h:commandButton>
在 Netbeans 7.3 中出现此错误:
The attribute update is not defined in the component commandButton
当我成功删除行时,我使用update 属性来显示消息。我可以用相似的属性替换这个属性吗?
【问题讨论】:
-
update是一个 primefaces only 属性,不能用于现有的 JSF 组件(比如你那里的<h:commandButton/>)。<f:ajax/>上的render属性应该足以达到预期的效果