我正面临这个奇怪的问题。我正在使用primefaces在我的页面上下载图像。代码如下:
<p:commandButton process="@this" immediate="true" rendered="#{rec.UTILITY_BILL_UPLOAD!=null}" id="fileId" value="#{rec.UTILITY_BILL_UPLOAD}" actionListener="#{pavReqAssign.DownloadUtility(rec)}" onclick="PrimeFaces.monitorDownload(start, stop);" icon="ui-icon-arrowthick-1-s" >
<p:fileDownload value="#{pavReqAssign.file}" />
</p:commandButton>
然而,问题是当我单击commandButton时,我收到错误,要求我输入所需的文本字段,但这些字段与下载按钮无关。那些领域是分开的。
有人可以帮助我吗?