2

这是我的复合组件:

<composite:interface>
    <composite:attribute name="attr1" />
    <composite:clientBehavior name="xyz" event="valueChange" targets="chkbox" />
</composite:interface>
<composite:implementation>
    <h:panelGrid>
    <h:panelGroup>
        <h:selectBooleanCheckbox id="chkbox"
                value="#{cc.attrs.attr1}">
            </h:selectBooleanCheckbox>
    </h:panelGroup>
</h:panelGrid>
</composite:implementation>

还有我的页面:

<h:form id="myForm">
  <cc:myComp attr1="#{myBean.someAttr}">
    <f:ajax render="myform:grid1" event="xyz" listener="{myBean.listenerMethod}"/>
  </cc:myComp>

  <h:panelGrid id="grid1">
      <h:panelGroup>
         <h:inputTextarea id="rationale" rows="4" cols="70"
                value="#{myBean.rationale}" />
      </h:panelGroup>
  </h:panelGrid>
</h:form>

我收到以下错误:

<f:ajax>包含未知 id 'myForm:grid1' - 无法在组件 chkbox 的上下文中找到它

如果我render="myform:grid1"从我的代码中删除,那么 ajax 调用工作正常。基本上,从我的复合组件中,我无法引用另一个 OUTSIDE 组件。这是如何引起的,我该如何解决?

4

1 回答 1

5
<f:ajax render="myform:grid1">

任何不以NamingContainer分隔符开头的客户端 ID(在您的情况下:为 )都相对于最近的NamingContainer父级。在您的特定情况下,最接近的NamingContainer父级是复合组件本身。所以,这个构造基本上是在寻找一个myform:XXX:myform:grid1相对于复合组件具有完整客户端 ID 的组件,其中XXX是复合组件的自动生成的 ID。但是,没有具有此完整客户端 ID 的此类组件。

假设面板网格的完整客户端 ID 确实是myform:grid1(即,当您在浏览器中打开页面时,右键单击并查看源代码,您确实看到了<table id="myform:grid1">),那么您应该将其设为绝对客户端 ID,而不是在其前面加上NamingContainer分隔符特点:

<f:ajax render=":myform:grid1">

也可以看看:

于 2012-12-04T15:56:35.217 回答