如何根据按钮触发的布尔状态变量显示图像?我不希望整个页面重新加载,而只是那个特定的图像。
Facelets页面:
</h:form>
<h:commandButton value="test" action="#{bean.toggleStatus}">
<f:ajax render="image"/>
</h:commandButton>
<h:graphicImage id="image" value="status.gif" rendered="#{bean.status}"/>
</h:form>
支持类:
class Bean {
private boolean status = false;
public void toggleStatus() {
status = true;
}
//getter, setter
}
知道这里可能有什么问题吗?