我有一个modalPanel声明为
<rich:modalPanel id="printEmailExcel" minWidth="800" minHeight="600" resizable="true">
<div style="width: 1055px; height: 700px; overflow: auto">
<s:decorate template="/view/popup/printEmailExcelPopup.xhtml"styleClass="popupCDiv">
<ui:param name="panelid" value="printEmailExcel" />value="/view/printForm/order.xhtml" />
</s:decorate>
</div>
</rich:modalPanel>
还有一个命令按钮在同一页面上显示modalPanel
<s:button oncomplete="#{rich:component('printEmailExcel')}.show()" image="/images/icons/btn_print.gif" ></s:button>
在printEmailExelPopup.xhtml里面,有一个
<h:form><s:button view="/view/print/order.xthml" /></h:form>
order.xhtml:
<p:document xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:p="http://jboss.com/products/seam/pdf">
The document goes here.
< /p:document>
问题是,当我单击modalPanel中的s:按钮时,它只会刷新整个页面,而不会下载pdf文件。但是,如果我将s:button放在modalPanel之外(与rich:modalPanel处于同一级别,则可以正常工作)。有帮助吗?
最佳答案
尝试在您的commandButton周围加上表单标签。