如何动态引用元素id

时间:2011-01-21 12:03:16

标签: jsf richfaces seam myfaces tomahawk

我正在尝试使用tomahawk selectOneRadio传播单选按钮。我的ID看起来像这样

<rich:dataTable id="carTable" value="#{cars}" var="car">
    <rich:column>
        <s:decorate id="types" template="/layout/display-text.xhtml">
            <t:selectOneRadio id="models" value="#{car.model}" layout="spread">
                <f:selectItems value="#{models}" />
            </t:selectOneRadio>
            <h:panelGrid columns="2">
                <a:repeat value="#{models}" rowKeyVar="index">
                    <t:radio for="car:carTable:0:types:models" index="#{index}"></t:radio>
                </a:repeat>
            </h:panelGrid>  -->
        </s:decorate>
    </rich:column> 
</rich:dataTable>

我在检查一个元素后引用了id。但这不起作用。因为每次迭代单选按钮ID都不同。如何在t:radio

中引用id

1 个答案:

答案 0 :(得分:1)

documentation for t:radio说:

  

引用的扩展selectOneRadio组件的id。使用标准UIComponent.findComponent()搜索算法将此值解析为特定组件。

我猜a:repeatNamingContainer,因此使用"models"将无效。您可以使用t:selectOneRadio组件的client identifier

这样的事情:

<t:selectOneRadio id="models" value="#{car.model}" layout="spread"
   binding="#{requestScope.modelComponent}">
  <f:selectItems value="#{models}" />
</t:selectOneRadio>
<h:panelGrid columns="2">
  <a:repeat value="#{models}" rowKeyVar="index">
    <t:radio for="#{requestScope.modelComponent.clientId}" index="#{index}" />
  </a:repeat>
</h:panelGrid>

注意事项:

  1. 使用键“modelComponent”将组件绑定到请求范围映射;你需要确保这不会与其他东西发生冲突
  2. 解析modelComponent.clientId需要JSF 2.0(JEE6)或更高版本
  3. 有关详情,请参阅here;使用旧版本;等