On 4/20/06, Alexandre Poitras <[EMAIL PROTECTED]> wrote: > Yup or if you use facelets, c:forEach
There's a c:forEach and a ui:repeat in facelets. c:forEach is a "compile-time" loop (happens once per page, and duplicates component tags) and ui:repeat is similar to t:dataList as a render-time loop (happens once per request and components inside the list exist only once -- flyweight pattern). Generally, you want to use a render-time loop, not a compile-time loop.

