Hi,

I have a tr:tableLayout. Since the number of rows changes, I use
tr:iterator to enclose tr:rowLayout. One of the columns contains radio
buttons. Therefore, the markup looks like

          <tr:selectOneRadio value="#{AccountBean.selectedCreditCard}"
required="yes">
            <tr:iterator value="#{AccountBean.creditCards}" var="item">
              <trh:rowLayout>
                <trh:cellFormat>
                  <f:selectItem itemValue="#{item.id}"/>
                </trh:cellFormat>
               </trh:rowLayout>
               ..........
            </tr:iterator>
          </tr:selectOneRadio>

The problem is the radio buttons does not show up. In other words,
tr:iterator does not work inside tr:selectOneRadio. Please help.

thanks

Bill

Reply via email to