Author: ilya_shaikovsky
Date: 2010-05-31 10:25:51 -0400 (Mon, 31 May 2010)
New Revision: 17413
Modified:
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/extendedDataTable/simpleTable.xhtml
Log:
label added
Modified:
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/extendedDataTable/simpleTable.xhtml
===================================================================
---
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/extendedDataTable/simpleTable.xhtml 2010-05-31
14:20:49 UTC (rev 17412)
+++
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/extendedDataTable/simpleTable.xhtml 2010-05-31
14:25:51 UTC (rev 17413)
@@ -7,6 +7,13 @@
xmlns:it="http://richfaces.org/iteration">
<ui:composition>
+<p>ExtendedDataTable component provides next set of features:</p>
+<ul>
+ <li> Horizontal/Vertical scrolling </li>
+ <li> Ajax lazy loading on vertical scroll </li>
+ <li> Support "frozen" columns which are not scrolled on using
horizontal scroll</li>
+</ul>
+
<h:form>
<it:extendedDataTable value="#{carsBean.allInventoryItems}"
var="car"
id="table" frozenColumns="2" style="height:300px;
width:500px;" rowClasses="qwe, qe">
@@ -56,7 +63,6 @@
<h:outputText value="#{car.daysLive}" />
</it:column>
</it:extendedDataTable>
- <a4j:commandButton value="render" render="table" />
</h:form>
</ui:composition>