我正在尝试创建一个在我的JSF 2.2页面中使用的复合组件。这是复合材料:
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:cc="http://java.sun.com/jsf/composite">
<cc:interface componentType="searchUser">
<!-- Define component attributes here -->
<cc:attribute name="update" type="java.lang.String"
shortDescription="the component to update"/>
<cc:attribute name="widgetVar" type="java.lang.String"/>
</cc:interface>
<cc:implementation>
<p:dialog header="Search for User"
widgetVar="#{cc.widgetVar}"
modal="true"
id="searchDialog"
>
<p:panelGrid columns="2" id="searchPanel">
<p:outputLabel value="First Name: "
for="firstname"
/>
<p:inputText id="firstname" value="#{SearchBean.firstname}"/>
<p:outputLabel value="Last Name: "
for="lastname"
/>
<p:inputText id="lastname" value="#{SearchBean.lastname}"/>
<p:commandButton value="search"/>
<p:dataTable value="#{SearchBean.results}" var="user">
<p:column headerText="First Name">
#{user.firstName}
</p:column>
<p:column headerText="Last Name">
#{user.lastName}
</p:column>
<p:column headerText="E-Mail">
#{user.email}
</p:column>
</p:dataTable>
</p:panelGrid>
</p:dialog>
</cc:implementation>
我正在使用它:
<my:searchUser update="foo" id="searchDLG" widgetVar="sdgl"/>
<p:commandButton onclick="PF('sdgl').show();" type="button" value="search for user" />
目前我的FacesComponent Java是空的:
@FacesComponent("searchUser")
public class searchUser extends UIInput implements NamingContainer {
}
目标是创建一个搜索表单/对话框,我可以在多个位置使用。
我的问题是,在点击时我收到错误:Uncaught TypeError: Cannot read property 'show' of undefined
。
对于我所缺少的任何建议都将不胜感激。
答案 0 :(得分:4)
这不是引用复合属性的正确方法。
<p:dialog widgetVar="#{cc.widgetVar}">
它基本上引用了支持组件本身的属性。
#{cc.attrs}
地图可以使用复合属性。
<p:dialog widgetVar="#{cc.attrs.widgetVar}">
导致JS错误的原因是实际的widgetVar
值为空,PF('sdgl')
返回undefined
,然后您将盲目地尝试调用show()
功能。它基本上就像Java中的NullPointerException
。
无关,此合成还有其他2个问题:
支持组件未返回UINamingContainer.COMPONENT_FAMILY
所需的组件系列。您可以通过从UINamingContainer
而不是UIInput
延伸,或通过覆盖getFamily()
方法返回UINamingContainer.COMPONENT_FAMILY
来修复此问题。
这不是复合组件的正确用途。根本没有单一的模型价值。即你没有<my:searchUser value="...">
类似于现有的标准组件。而是使用include或tagfile。另请参阅When to use <ui:include>, tag files, composite components and/or custom components?否则,请复制复合材料,以便最终使用<my:searchUser value="#{bean.foundUser}">
。