我这里有一些代码:
<f:view>
<h:form id="formA">
<p:treeTable id="tree">
<p:ajax event="select" listener="..." update="mustRefresh" />
...
</p:treeTable>
</h:form>
<h:form id="formB">
<p:panel id="mustRefresh"> ... </p:panel>
</h:form>
</f:view>
当用户在 treeTable(formA) 上选择一条记录时,它的详细信息将显示在 formB 上并准备好进行编辑。我的麻烦是 update="mustRefresh" 不起作用,它会抛出这样的异常:
javax.faces.FacesException: Cannot find component with identifier "mustRefresh" referenced from "A4578:formA:tree".
我尝试使用@form、formB、:formB 和:mustRefresh,但它不起作用。