我有一个页面使用rich:fileUpload
和a4j:commandButton
我想要实现的是,第一次加载页面时会出现fileUpload(渲染,我的backingBean默认为true等等)它正确呈现)当用户点击commandButton我想隐藏fileUpload并显示outputText
(这不会发生,根本没有错误)
我如何解决这个问题,我的网页看起来像
<div id="content">
<a4j:outputPanel id="contentForm">
<h:form enctype="multipart/form-data"
rendered="#{uploadBean.formRendered}">
<br/><br/>
<h:selectOneRadio value="#{uploadBean.selectedOption}">
<f:selectItems value="#{uploadBean.loadOptions}"/>
</h:selectOneRadio>
<br/>
<rich:fileUpload addLabel="Agregar" clearAllLabel="Quitar todos"
clearLabel="Quitar" deleteLabel="Quitar"
doneLabel="Completado" uploadLabel="Subir archivos"
fileUploadListener="#{uploadBean.doUpload}"
acceptedTypes="txt, csv"
noDuplicate="true"/>
<a4j:commandButton value="Iniciar validación"
action="#{uploadBean.doLaunchProcess}"
render="processLabel"
execute="@form"
/>
</h:form>
</a4j:outputPanel>
<a4j:outputPanel id="processLabel">
<h:outputText
value="#{uploadBean.processStarted}"
rendered="#{not uploadBean.formRendered}"/>
</a4j:outputPanel>
</div>
并且commandButton的操作代码是:
public String doLaunchProcess() {
formRendered = false;
InfoValidator iv = new InfoValidator(loadOptions,
selectedOption, userBean.getDependencia(),
userBean.getTipoDependencia(), userBean.getUsuario(),
userBean.getIdUsuario(), userBean.getEmail());
iv.start();
return "carga-archivos";
}
当用户点击按钮并且fileUpload隐藏并显示outputText时,似乎formRendered
总是被评估为true。
更新 基本上我想要的是用户上传文件,当用户点击按钮时,fileUpload组件消失并出现一个outputText,并说“感谢上传”
也许我的方法是错的,只是让我朝着正确的方向前进,我有点混淆了ajax的东西。
干杯,
答案 0 :(得分:2)
最后我做到了!
这是代码,您可以看到修改。
基本上我必须处理整个表单(execute="@form"
)a4j:commandButton已经然后render="contentForm :processLabel"
。
我只是渲染(reRendering?)只是processLabel而且表单始终存在'因为我没有更新视图(我认为这必须是DOM树,有人请澄清这个)
<div id="content">
<a4j:outputPanel id="contentForm">
<h:form enctype="multipart/form-data"
rendered="#{uploadBean.formRendered}">
<br/><br/>
<h:selectOneRadio value="#{uploadBean.selectedOption}">
<f:selectItems value="#{uploadBean.loadOptions}"/>
</h:selectOneRadio>
<br/>
<rich:fileUpload addLabel="Agregar" clearAllLabel="Quitar todos"
clearLabel="Quitar" deleteLabel="Quitar"
doneLabel="Completado" uploadLabel="Subir archivos"
fileUploadListener="#{uploadBean.doUpload}"
acceptedTypes="txt, csv"
noDuplicate="true"/>
<a4j:commandButton value="Iniciar validación"
action="#{uploadBean.doLaunchProcess}"
render="contentForm :processLabel"/>
</h:form>
</a4j:outputPanel>
<a4j:outputPanel id="processLabel">
<h:outputText
value="#{uploadBean.processStarted}"
rendered="#{not uploadBean.formRendered}"/>
</a4j:outputPanel>
</div>
支持bean保持不变。
干杯!!!