我在modalPanel中有这个inputTextarea,并且我在后台bean中更新相应值(motivePopupMotive)的唯一方法是在inputTextarea中添加一个a4j:support来设置ajaxSingle = true,如下所示: / p>
<a4j:support event="onchange" ajaxSingle="true"></a4j:support>
在通过单击“btnSavePopupMotive”按钮调用方法保存之前。如果我不这样做,那么当我点击“btnSavePopupMotive”按钮时,支持bean中的值总是一个空字符串。
但我不想要这个解决方案,因为当我调用ajax函数时,我会显示一个“加载”图像,我不希望这个图像只是因为用户在此输入中输入了一些文本而显示出来。我该怎么解决这个问题?这是代码:
<div style="position: absolute;">
<a4j:form id="form2">
<r:modalPanel id="panelPopupMotive" resizeable="false" autosized="true" minWidth="300" minHeight="20" >
<table width="99%" bgcolor="#FFFFFF" style="border-collapse: collapse; border: 0px solid #000000;">
<tr><td>
<fieldset>
<legend class="fmeSmallLegend"><h:outputText value="Motive" /> </legend>
<table><tr><td>
<h:inputTextarea id="motivePopupMotive"
onkeydown="verifySize(this, 200);"
onkeyup="verifySize(this, 200);"
onchange="verifySize(this, 200);"
value="#{ParameterFaces.motivePopupMotive}"
rows="4" style="width: 380px;" onfocus="this.style.background='#FFFED2';" onblur="this.style.background='#F5F5F5';">
</h:inputTextarea>
</td></tr></table>
</fieldset>
</td></tr>
<tr>
<td align="center">
<a4j:commandButton id="btnSavePopupMotive"
value="Save" onclick="saveMotive();"
style="width:80px" type="submit"
oncomplete="closePopupMotive();"
title="Save" reRender="motivePopupMotive,existsErrorMotive">
</a4j:commandButton>
<r:spacer width="5px" />
<a4j:commandButton id="btnCancel"
value="Cancel" style="width:80px"
oncomplete="Richfaces.hideModalPanel('panelPopupMotive');"
title="Cancel">
</a4j:commandButton>
</td>
</tr>
</table>
<script type="text/javascript">
function closePopupMotive(){
if (document.getElementById('form2:motivePopupMotive').value == 'false'){
Richfaces.hideModalPanel('panelPopupMotive');
}
}
</script>
<a4j:jsFunction name="saveMotive" reRender="motivePopupMotive" oncomplete="saveValidatedMotive();"/>
<a4j:jsFunction name="saveValidatedMotive" actionListener="#{ParameterFaces.save}" reRender=""/>
</r:modalPanel>
</a4j:form>
</div>
谢谢!
答案 0 :(得分:1)
原来是因为我在表单中使用了modalPanel ...我把表单放在modalPanel之外,一切正常。