我想根据checkbox的值创建一个outputtext;这是我的代码:
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<body>
<ui:composition template="../WEB-INF/templates/template.xhtml">
<ui:define name="content">
<h:form id="formModifClt">
<h:outputText value="voulez-vous modifier cette image ?"/>
<h:selectBooleanCheckbox value="#{clientController.modifierImage}" >
<f:ajax event="click" listener="#{clientController.onChangeCheckBox()}" render="textPanel" />
</h:selectBooleanCheckbox>
<p:outputPanel id="textPanel" autoUpdate="true" >
<h:outputText value="Oui" rendered="#{clientController.modifierImage}" />
<h:outputText value="Non" rendered="#{!clientController.modifierImage}" />
</p:outputPanel>
<p:outputPanel autoUpdate="true" >
<h:outputText value="Logo" rendered="#{clientController.modifierImage}" id="logo" />
<p:fileUpload id="up" fileUploadListener="#{fileUploadController.handleFileUpload}"
mode="advanced"
sizeLimit="100000"
required="true"
allowTypes="/(\.|\/)(gif|jpe?g|png)$/" rendered="#{clientController.modifierImage}"/>
</p:outputPanel>
<p:commandButton action="#{clientController.modifClient()}" value="Modifier" ajax="false"/>
</h:form>
</ui:define>
</ui:composition>
</body>
我的问题是,用户第一次点击复选框时,值没有变化且onChangeCheckBox()没有变形。从第二次开始,它工作正常。 注意:我不想在javascript中这样做,因为我根据布尔复选框完成了其他处理。
这是我的控制器:
public void onChangeCheckBox () {
System.out.println("modifierImage="+modifierImage);
}
/**
* @return the modifierImage
*/
public boolean isModifierImage() {
return modifierImage;
}
/**
* @param modifierImage the modifierImage to set
*/
public void setModifierImage(boolean modifierImage) {
this.modifierImage = modifierImage;
}
使用balusC的解决方案更好(第一次点击它时不会给出一个chcked checkButton)但问题仍然存在!
答案 0 :(得分:0)
乍一看,我看不到任何特定事件和任何要重新渲染的组件,那么它如何作为10的首发?
<h:form>
<h:selectBooleanCheckbox value="#{clientController.modifierImage}" >
<f:ajax event="click" listener="#{clientController.onChangeCheckBox()}" render="textPanel" />
</h:selectBooleanCheckbox>
<p:outputPanel id="textPanel" autoUpdate="true">
<h:outputText value="Yes" rendered="#{clientController.modifierImage}" />
<h:outputText value="No" rendered="#{!clientController.modifierImage}" />
</p:outputPanel>
</h:form>
如果需要进一步的帮助,请发布您的控制器类。
答案 1 :(得分:0)
我发现,有时候,它取决于当前页面之前调用的页面!我用ajax =“false”制作它们并且它工作正常!!
答案 2 :(得分:0)
我遇到了同样的问题。从我这里来看,<h:form>
元素阻止了第一次点击的更新。这是它的样子:
<f:facet name="body">
<h:form>
<h:panelGroup id="bodyContainer">
<h:selectBooleanCheckbox title="#{bundle['some.good.text']}" value="#{bean.checkMe}">
<f:ajax render="bodyContainer" />
</h:selectBooleanCheckbox>
#{bundle['some.realy.good.text']}
<br />
</h:panelGroup>
</h:form>
</f:facet>
但是一旦<h:form>
被移除,每件事情都会恢复正常。