JSF h:commandLink JavaScript错误

时间:2013-04-25 14:07:19

标签: jsf jsf-2

我正在使用JSF 2.0代码<h:commandLink>而我正在尝试打开一个target_blank的窗口。在目标中,我试图填充从服务器获取的文档。但在这样做时,我在jsfcljs处的jsf.js(函数名称为f.submit())中收到错误。

声明如下:

<h:commandLink id="viewDocument" value="#{template.orderBean.documentBean.documentName}"
               action="#{template.viewCustomDocument}" target="_blank" styleClass="textbold">
    <f:param name="documentId" value="#{template.orderBean.documentBean.documentId}"/>
</h:commandLink>

我得到的错误是

  

Object不支持此属性。

如果我使用<h:commandButton>代替,那么我就可以调用服务器并获取文档。

问题可能是什么?

0 个答案:

没有答案