我正在尝试使用 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