我有一个场景,在下拉我的面板id = abc中选择一个值应该显示。但是我得到了面孔异常“abc”无法从动物园中引用。 任何建议代码改进.... 提前谢谢......
<p:selectOneMenu id="zoo" value="#{cc.attrs.bean.test}" style="width:150px" label="#{hello.description}"
converter="testConverter">
<p:ajax event="change" listener="#{cc.attrs.bean.onTest}" update="abc"/>
<f:selectItems value="#{cc.attrs.bean.sooo}" var="soh" itemLabel="#{soh.ex1}" itemValue="#{soh}"/>
</p:selectOneMenu>
<p:accordionPanel style="width:580px;" id="xyz">
<p:tab title="Test for tab"id="hfg">
<p:outputPanel style="width:525px;display:block" id="abc" >
<ui:repeat id="foo" value="#{cc.attrs.bean.animal}" var="yyy">
<h:panelGroup rendered="#{!yyy.aaa}" id="ppp">
<h:outputText value="#{yyy.flower />
<p:selectOneMenu id="wooo" value="#{yyy.house}" label="#{yyy.car}" converter="yyyConverter">
<f:selectItem itemLabel="" itemValue="" />
<f:selectItems value="#{yyy.example}" var="sss" itemLabel="#{sss.p1}:#{sss.dp2}" itemValue="#{sss}"/>
</p:selectOneMenu>
</h:panelGroup>
</ui:repeat>
答案 0 :(得分:1)
问题在于您正在尝试更新一个元素(p:outputPanel),该元素嵌入另一个元素(p:tab)中,并带有一个id,p:tab也嵌入到p:accordionPanel中ID。您必须在update属性中指定所有父ID,如下所示:
<p:selectOneMenu id="zoo" value="#{cc.attrs.bean.test}" style="width:150px" label="#{hello.description}"
converter="testConverter">
<p:ajax event="change" listener="#{cc.attrs.bean.onTest}" update="xyz:hfg:abc"/>
<f:selectItems value="#{cc.attrs.bean.sooo}" var="soh" itemLabel="#{soh.ex1}" itemValue="#{soh}"/>
</p:selectOneMenu>
<p:accordionPanel style="width:580px;" id="xyz">
<p:tab title="Test for tab" id="hfg">
`enter code here`
<p:outputPanel style="width:525px;display:block" id="abc" >
</p:outputPanel>
</p:tab>
你还应该在p:tab的标题和id之间加一个空格,id = hfg。