Author: ilya_shaikovsky
Date: 2010-05-31 11:34:56 -0400 (Mon, 31 May 2010)
New Revision: 17424
Modified:
root/examples/richfaces-showcase/trunk/src/main/resources/org/richfaces/demo/data/common/navigation.xml
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/dataScroller/dataScrollerAPI.xhtml
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/repeat/simpleGrid.xhtml
Log:
syntax/stylein corrections
Modified:
root/examples/richfaces-showcase/trunk/src/main/resources/org/richfaces/demo/data/common/navigation.xml
===================================================================
---
root/examples/richfaces-showcase/trunk/src/main/resources/org/richfaces/demo/data/common/navigation.xml 2010-05-31
15:18:09 UTC (rev 17423)
+++
root/examples/richfaces-showcase/trunk/src/main/resources/org/richfaces/demo/data/common/navigation.xml 2010-05-31
15:34:56 UTC (rev 17424)
@@ -170,10 +170,6 @@
<id>imgUsage</id>
<name>mediaOutput for image output</name>
</sample>
- <sample>
- <id>imgUsage</id>
- <name>mediaOutput for flash output</name>
- </sample>
</samples>
</demo>
<demo>
Modified:
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/dataScroller/dataScrollerAPI.xhtml
===================================================================
---
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/dataScroller/dataScrollerAPI.xhtml 2010-05-31
15:18:09 UTC (rev 17423)
+++
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/dataScroller/dataScrollerAPI.xhtml 2010-05-31
15:34:56 UTC (rev 17424)
@@ -34,7 +34,7 @@
<h:graphicImage value="/images/icons/scroller/arr_right.png"
onclick="#{fn:component('ds')}.next()" />
</h:panelGrid>
- <it:dataScroller for="pics" id="ds" render="repeat"
stepControls="false" boundaryControls="false"
fastControls="false" maxPages="10"/>
+ <it:dataScroller for="pics" id="ds" render="repeat"
stepControls="none" boundaryControls="none"
fastControls="none" maxPages="10"/>
</h:panelGrid>
</h:form>
</ui:composition>
Modified:
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/repeat/simpleGrid.xhtml
===================================================================
---
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/repeat/simpleGrid.xhtml 2010-05-31
15:18:09 UTC (rev 17423)
+++
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/repeat/simpleGrid.xhtml 2010-05-31
15:34:56 UTC (rev 17424)
@@ -8,11 +8,13 @@
xmlns:it="http://richfaces.org/iteration">
<ui:composition>
-<p>a4j:repeat is a base iteration component of RichFaces. It allows to create any
markups based
-on iterative data. This sample shows simple grid from capitals list.</p>
+ <p>a4j:repeat is a base iteration component of RichFaces. It allows
+ to create any markups based on iterative data. This sample shows simple
+ grid from capitals list.</p>
<h:form>
- <a4j:outputPanel id="panel">
- <a4j:repeat value="#{capitalsBean.capitals}" var="cap"
rows="20" id="repeat">
+ <a4j:outputPanel id="panel" layout="block">
+ <a4j:repeat value="#{capitalsBean.capitals}" var="cap"
rows="20"
+ id="repeat">
<rich:panel style="float:left; width:200px; padding:5px;">
<f:facet name="header">
<h:panelGroup>
@@ -29,7 +31,9 @@
</rich:panel>
</a4j:repeat>
</a4j:outputPanel>
- <it:dataScroller for="repeat" render="panel" />
+ <a4j:outputPanel layout="block">
+ <it:dataScroller for="repeat" render="panel" />
+ </a4j:outputPanel>
</h:form>
</ui:composition>
</html>
\ No newline at end of file