我正在将一个xhtml呈现给一个对话框,该对话框的组件是使用Dynamic example从服务器端动态添加的。
使用PrimeFaces 5.1,JSF 2.1 Mojarra和tomcat 7。
当我点击弹出的关闭按钮时,大量的无法找到组件正在被eclipse控制台看到,因为关闭动作响应缓慢。
尝试在 myForm 上将 prependId 更改为 true 。还尝试使用:myForm 从关闭按钮的更新属性中替换 @form 。 这两种方法都没有成功。
我想知道如何防止此无法找到组件被触发。
无法使用clientId editOwnerForm找到组件:tab:j_id16:iq_16_panelGroup2',无需删除它。
无法使用clientId查找组件 'editOwnerForm:tab:j_id16:j_id235',无需删除它。 无法 使用clientId'editOwnerForm查找组件:tab:j_id16:j_id236',no 需要删除它。 无法使用clientId找到组件 'editOwnerForm:tab:j_id16:j_id237',无需删除它。 无法 使用clientId'editOwnerForm查找组件:tab:j_id16:j_id238',no 需要删除它。 无法使用clientId找到组件 'editOwnerForm:tab:j_id16:j_id239',无需删除它。 无法 使用clientId'editOwnerForm查找组件:tab:j_id16:j_id240',no 需要删除它。 无法使用clientId找到组件 'editOwnerForm:tab:j_id16:j_id241',无需删除它。 无法 使用clientId'editOwnerForm查找组件:tab:j_id16:j_id242',no 需要删除它。 无法使用clientId找到组件 'editOwnerForm:tab:j_id16:j_id243',无需删除它。 无法使用clientId editOwnerForm找到组件:tab:j_id16:iq_17_225',无需删除它。 无法使用clientId找到组件 'editOwnerForm:tab:j_id16:iq_17_panelGroup2',无需删除它。
myForm.xhtml
<h:form prependId="false" id="form">
<p:commandButton id="editOwnerButtonId" oncomplete="PF('editOwnerDlgVar').show();"
actionListener="#{myViewBean.editOwner}"
update=":editOwnerForm" icon="ui-icon-pencil"
iconPos="right">
<f:param name="ownerId"
value="#{myViewBean.id}" />
</p:commandButton>
</h:form>
<p:dialog id="editOwnerDlgId" widgetVar="editOwnerDlgVar"
modal="true" closable="true" width="1200px" height="600" >
<ui:include src="ownerEdit.xhtml" />
</p:dialog>
ownerEdit.xhtml
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
lang="en" xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:shiro="http://shiro.apache.org/tags">
<h:form prependId="true" id="editOwnerForm">
<p:tabView id="tab" style="border-width:0px;"
activeIndex="#{myViewBean.tanIndex}">
<p:tab >
</p:tab >
<p:tab id="dynamicResponse" title="Dynamic Response">
<h:panelGroup id="sections"
binding="#{myViewBean.panelGroup}">
</h:panelGroup>
</p:tab>
</p:tabView>
<p:commandButton value="Close" update=":form" id="cancelButton"
immediate="true"
actionListener="#{myViewBean.cancelOwner}"
icon="ui-icon ui-icon-arrowreturn-1-w" iconPos="right">
<p:ajax listener="#{myViewBean.setTabIndex}" />
</p:commandButton>
</h:form>
</ui:composition>
MyViewBean动态渲染代码 - 在点击编辑按钮
上触发HtmlPanelGroup panelGroup = new HtmlPanelGroup();
panelGroup.getChildren().clear();
TabView tabView = new TabView();
Tab sectionTab = (Tab) tabView.findComponent("sec_" + question.getSectionId());
sectionTab.setId("sec_" + question.getSectionId());
sectionTab.setTitle(question.getSectionName());
HtmlPanelGrid pg = new HtmlPanelGrid();
pg.setColumns(3);
OutputLabel questionText = new OutputLabel();
questionText.setValue(question.getTitle());
pg.getChildren().add(questionText);
OutputLabel coln1 = new OutputLabel();
coln1.setValue(":");
pg.getChildren().add(coln1);
final String respBind = "#{myViewBean.questionResponse[\""+ question.getId()+ "_"+ pet.getId()+ "_"+ question.getMultiPet() + "\"]}";
final ValueExpression resp = FacesContext.getCurrentInstance().getApplication()
.getExpressionFactory().createValueExpression(FacesContext.getCurrentInstance().getELContext(), respBind, String.class);
InputText value = new InputText();
value.setId("iq_"+ String.valueOf(question.getId()) + "_"+ String.valueOf(pet.getId()));
value.setSize(20);
value.setValueExpression("value", resp);
pg.getChildren().add(value);
sectionTab.getChildren().clear();
sectionTab.getChildren().add(pg);
tabView.getChildren().add(sectionTab);
panelGroup.getChildren().add(tabView);
答案 0 :(得分:2)
解决了这个问题...要修复&#34;无法使用clientId&#39;标签查找组件:j_id16:sec_4&#39;,无需删除它。&#34;,我们有将jsf jar更新为2.1.7到2.1.9或2.1.29。 在下面的链接中,这是Mojarra的一个问题。
查看链接
http://forum.primefaces.org/viewtopic.php?f=3&t=22880
https://java.net/jira/browse/JAVASERVERFACES-2383
https://java.net/jira/secure/ReleaseNote.jspa?projectId=10204&version=15535