This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: a4j:repeat inside of rich:dataTable problem - empty cellnbelaevski Oct 30, 2008 8:05 PM (in response to jhaley)Hi, 
 This:<rich:dataTable var="row" rowKeyVar="rowCount" value="#{testBean.autocomplete}"> <h:column> <table border="1"> <tr> <a4j:repeat rowKeyVar="colCnt" var="col" value="#{testBean.autocomplete}"> <td><h:outputText value="#{colCnt}" /></td> </a4j:repeat> </tr> </table> </h:column> </rich:dataTable>works fine for me
 Does anything change if you enclose<table border="1"> <tr> <a4j:repeat rowKeyVar="colCnt" var="col" value="#{row.deductibleRates}" > <td>#{colCnt}</td> </a4j:repeat> </tr> </table>into h:panelGroup?
- 
        2. Re: a4j:repeat inside of rich:dataTable problem - empty celljhaley Oct 31, 2008 10:50 AM (in response to jhaley)That did it. Thanks! 
 
    