[seam-commits] Seam SVN: r14413 - branches/community/Seam_2_3/examples-ee6/excel/excel-web/src/main/webapp.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Thu Mar 15 08:39:37 EDT 2012
Author: manaRH
Date: 2012-03-15 08:39:37 -0400 (Thu, 15 Mar 2012)
New Revision: 14413
Modified:
branches/community/Seam_2_3/examples-ee6/excel/excel-web/src/main/webapp/repeat.xhtml
Log:
fixed ui:repeat to display it without whitespaces
Modified: branches/community/Seam_2_3/examples-ee6/excel/excel-web/src/main/webapp/repeat.xhtml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/excel/excel-web/src/main/webapp/repeat.xhtml 2012-03-15 12:39:24 UTC (rev 14412)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-web/src/main/webapp/repeat.xhtml 2012-03-15 12:39:37 UTC (rev 14413)
@@ -11,9 +11,7 @@
<e:cell value="Names of committers" />
</f:facet>
<e:cell>
- <ui:repeat value="#{list}" var="person">
- #{person.name},
- </ui:repeat>
+ <ui:repeat value="#{list}" var="person">#{person.name},</ui:repeat>
</e:cell>
</e:column>
</e:worksheet>
More information about the seam-commits
mailing list