我正在尝试使用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答案 0 :(得分:1)
引用的扩展selectOneRadio组件的id。使用标准UIComponent.findComponent()搜索算法将此值解析为特定组件。
我猜a:repeat
是NamingContainer
,因此使用"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>
注意事项:
modelComponent.clientId
需要JSF 2.0(JEE6)或更高版本有关详情,请参阅here;使用旧版本;等