Author: vdedik
Date: 2012-08-14 07:38:46 -0400 (Tue, 14 Aug 2012)
New Revision: 15033

Modified:
   
branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/src/main/webapp/artists.xhtml
Log:
JBSEAM-5009

Modified: 
branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/src/main/webapp/artists.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/src/main/webapp/artists.xhtml
      2012-08-13 11:46:56 UTC (rev 15032)
+++ 
branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/src/main/webapp/artists.xhtml
      2012-08-14 11:38:46 UTC (rev 15033)
@@ -47,10 +47,14 @@
                                                                
rendered="#{artist.class.simpleName eq 'Artist'}" />
                                                        <tr:outputText 
value="None"
                                                                
rendered="#{artist.class.simpleName eq 'Band' and empty artist.bandMembers}" />
-                                                       <rich:list 
value="#{artist.bandMembers}" var="bandMember"
-                                                               
rendered="#{artist.class.simpleName eq 'Band' and not empty 
artist.bandMembers}">
-                                                               <tr:outputText 
value="#{bandMember.name}" />
-                                                       </rich:list>
+                     <tr:group
+                        rendered="#{artist.class.simpleName eq 'Band' and not 
empty artist.bandMembers}">
+                        <ul>
+                           <tr:iterator value="#{artist.bandMembers}" 
var="bandMember">
+                              <li><tr:outputText 
value="#{bandMember.name}"/></li>
+                           </tr:iterator>
+                        </ul>
+                     </tr:group>
                                                </tr:column>
                                                <f:facet name="detailStamp">
                                                        <s:div style="width: 
200px">

_______________________________________________
seam-commits mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/seam-commits

Reply via email to