通过<ui:composition> <ui:param>传递的托管bean在<p:ajax listener =“”> </p:ajax> </ui:param> </ui:composition>中找不到

时间:2015-03-11 20:41:15

标签: jsf primefaces facelets managed-bean

我的p:ajax组件有问题。我使用模板,并将managedBean作为参数传输。

<ui:composition template="../templates/formTemplate.xhtml">
<ui:param name="formBean" value="#{formFilm}"/>

当我将托管bean用于模板时,我工作得很好,但没有进入p:ajax监听器属性。

<p:ajax event="itemSelect" listener="#{formBean.completeCharacter}"/>

我收到此错误:

Target Unreachable, identifier 'formBean' resolved to null
javax.el.PropertyNotFoundException: Target Unreachable, identifier    
'formBean' resolved to null

它适用于使用模板的视图。那么我该如何解决这个问题?

感谢。

0 个答案:

没有答案