Author: nbelaevski
Date: 2010-07-07 09:41:28 -0400 (Wed, 07 Jul 2010)
New Revision: 17761
Modified:
root/examples/iteration-demo/trunk/src/main/webapp/list.xhtml
Log:
Added dataScroller to lists demo
Modified: root/examples/iteration-demo/trunk/src/main/webapp/list.xhtml
===================================================================
--- root/examples/iteration-demo/trunk/src/main/webapp/list.xhtml 2010-07-07 13:40:35 UTC
(rev 17760)
+++ root/examples/iteration-demo/trunk/src/main/webapp/list.xhtml 2010-07-07 13:41:28 UTC
(rev 17761)
@@ -20,13 +20,15 @@
</h:form>
<h:form id="form1">
- <it:list var="item" value="#{dataBean.employeeList}"
rows="20" type="#{listBean.listType}">
+ <it:list id="list" var="item"
value="#{dataBean.employeeList}" rows="20"
type="#{listBean.listType}">
<f:facet name="term">
#{item.EMail}
</f:facet>
-
+
#{item.name}
</it:list>
+
+ <it:dataScroller for="list" />
</h:form>
</h:body>
</html>