[seam-commits] Seam SVN: r14412 - 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:25 EDT 2012
Author: manaRH
Date: 2012-03-15 08:39:24 -0400 (Thu, 15 Mar 2012)
New Revision: 14412
Modified:
branches/community/Seam_2_3/examples-ee6/excel/excel-web/src/main/webapp/home.xhtml
Log:
JBSEAM-4908 removed richfaces UIDatatable
Modified: branches/community/Seam_2_3/examples-ee6/excel/excel-web/src/main/webapp/home.xhtml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/excel/excel-web/src/main/webapp/home.xhtml 2012-03-15 09:52:45 UTC (rev 14411)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-web/src/main/webapp/home.xhtml 2012-03-15 12:39:24 UTC (rev 14412)
@@ -32,35 +32,35 @@
<br />
<a4j:outputPanel id="searchResults">
- <rich:dataTable value="#{excelTest.result}" var="person"
+ <h:dataTable value="#{excelTest.result}" var="person"
rendered="#{!empty excelTest.result}" id="excelTable"
style="xls-font: 10 Verdana; xls-column-widths: 8000 9000 10000"
columnClasses="left, right" width="500px">
- <rich:column>
+ <h:column>
<f:facet name="header">
<h:outputText value="Name" style="xls-font: red bold"/>
</f:facet>
<h:outputText value="#{person.name}" />
- </rich:column>
- <rich:column>
+ </h:column>
+ <h:column>
<f:facet name="header">
<h:outputText value="Company" style="xls-font: red bold" />
</f:facet>
<h:outputText value="#{person.company}" />
- </rich:column>
- <rich:column>
+ </h:column>
+ <h:column>
<f:facet name="header">
<h:outputText value="Working on" style="xls-font: red bold" />
</f:facet>
<h:outputText value="#{person.task}" />
- </rich:column>
- <rich:column style="xls-column-export:false">
+ </h:column>
+ <h:column style="xls-column-export:false">
<f:facet name="header">
<h:outputText value="Hide in export" style="xls-font: red bold" />
</f:facet>
<h:outputText value="Details" />
- </rich:column>
- </rich:dataTable>
+ </h:column>
+ </h:dataTable>
<h:commandLink value="Export table as Excel spreadsheet"
rendered="#{!empty excelTest.result}"
action="#{excelExporter.export('excelExport:excelTable')}" />
More information about the seam-commits
mailing list