You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ck...@apache.org on 2010/01/27 21:37:48 UTC

svn commit: r903822 [12/17] - in /myfaces/trinidad/trunk/trinidad-examples: ./ trinidad-components-showcase/ trinidad-components-showcase/src/ trinidad-components-showcase/src/main/ trinidad-components-showcase/src/main/java/ trinidad-components-showca...

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelRadio/panelRadioTop.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelRadio/panelRadioTop.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelRadio/panelRadioTop.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelRadio/panelRadioTop.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,23 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:panelRadio position="top"
+                   id="someId" label="Sales Data">
+        <tr:showDetailItem text="Monthly Sales Distribution" accessKey="M">
+            <tr:panelHeader text="Monthly Sales Distribution">
+                <tr:image source="/resources/monthlySalesDistribution.gif" shortDesc="Koenigsegg CCR"
+                          inlineStyle="height:200px; width:300px;" id="monthlySalesImage"/>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+
+        <tr:showDetailItem text="Sales by Geography" accessKey="S">
+            <tr:panelHeader text="Sales by Geography">
+                <tr:image source="/resources/salesByGeography.gif"
+                          inlineStyle="height:200px;  width:300px;" id="salesByGeographyImage"
+                          shortDesc="Sales information"/>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+    </tr:panelRadio>
+
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelRadio/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelRadio/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelRadio/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelRadio/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,11 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The panelRadio control can be used to display a group of contents belonging to a
+    showDetailItem. Radio buttons with each individual radio button representing a showDetailItem child is
+    displayed. The radio button control corresponding to showDetailItem that is disclosed is shown as selected and
+    contents of selected showDetailItem is displayed. If none of the showDetailItem children are selected, the first
+    showDetailItem that is enabled is considered to be selected. 
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelSideBar/panelSideBar.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelSideBar/panelSideBar.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelSideBar/panelSideBar.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelSideBar/panelSideBar.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,16 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:panelSideBar width="200px">
+        <tr:navigationPane hint="list" inlineStyle="width: 150px;">
+            <tr:commandNavigationItem text="Code" action="none" selected="true"/>
+            <tr:commandNavigationItem text="Organize" action="none"/>
+            <tr:commandNavigationItem text="FTP" action="none"/>
+            <tr:commandNavigationItem text="SVN" action="none"/>
+            <tr:commandNavigationItem text="Preview" action="none"/>
+        </tr:navigationPane>
+    </tr:panelSideBar>
+
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelSideBar/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelSideBar/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelSideBar/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelSideBar/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,7 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The panelSideBar control renders a side navigation bar.
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbed.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbed.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbed.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbed.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,54 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:panelTabbed>
+        <tr:showDetailItem text="Trinidad" disabled="true"/>
+        <tr:showDetailItem text="Apache">
+            <tr:panelHeader text="Header 2">
+                <tr:panelFormLayout>
+                    <tr:inputText label="Text1"/>
+                    <tr:inputText label="Text2"/>
+                    <tr:inputText label="Text3"/>
+                </tr:panelFormLayout>
+            </tr:panelHeader>
+        </tr:showDetailItem>               
+        <tr:showDetailItem text="Tab 3">
+            <tr:panelHeader text="Header 3">
+                <tr:panelList rows="2" inlineStyle="width: 200px;">
+                    <tr:goLink text="link 1"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 2"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 3"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 4"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 5"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 6"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 7"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 8"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                </tr:panelList>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+        <tr:showDetailItem text="Tab 4">
+            <tr:panelHeader text="Header 4">
+                <tr:panelFormLayout>
+                    <tr:inputText readOnly="true" label="Another text" styleClass="AFDataText"/>
+                </tr:panelFormLayout>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+        <tr:showDetailItem text="Tab 5">
+            <tr:panelHeader text="Header 5">
+                <tr:panelFormLayout>
+                    <tr:inputText readOnly="true" label="Label 5-1" styleClass="AFDataText"/>
+                </tr:panelFormLayout>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+    </tr:panelTabbed>
+
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbedAbove.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbedAbove.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbedAbove.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbedAbove.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,54 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:panelTabbed position="above">
+        <tr:showDetailItem text="Trinidad" disabled="true"/>
+        <tr:showDetailItem text="Apache">
+            <tr:panelHeader text="Header 2">
+                <tr:panelFormLayout>
+                    <tr:inputText label="Text1"/>
+                    <tr:inputText label="Text2"/>
+                    <tr:inputText label="Text3"/>
+                </tr:panelFormLayout>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+        <tr:showDetailItem text="Tab 3">
+            <tr:panelHeader text="Header 3">
+                <tr:panelList rows="2" inlineStyle="width: 200px;">
+                    <tr:goLink text="link 1"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 2"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 3"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 4"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 5"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 6"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 7"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 8"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                </tr:panelList>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+        <tr:showDetailItem text="Tab 4">
+            <tr:panelHeader text="Header 4">
+                <tr:panelFormLayout>
+                    <tr:inputText readOnly="true" label="Another text" styleClass="AFDataText"/>
+                </tr:panelFormLayout>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+        <tr:showDetailItem text="Tab 5">
+            <tr:panelHeader text="Header 5">
+                <tr:panelFormLayout>
+                    <tr:inputText readOnly="true" label="Label 5-1" styleClass="AFDataText"/>
+                </tr:panelFormLayout>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+    </tr:panelTabbed>
+
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbedBelow.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbedBelow.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbedBelow.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbedBelow.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,54 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:panelTabbed position="below">
+        <tr:showDetailItem text="Trinidad" disabled="true"/>
+        <tr:showDetailItem text="Apache">
+            <tr:panelHeader text="Header 2">
+                <tr:panelFormLayout>
+                    <tr:inputText label="Text1"/>
+                    <tr:inputText label="Text2"/>
+                    <tr:inputText label="Text3"/>
+                </tr:panelFormLayout>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+        <tr:showDetailItem text="Tab 3">
+            <tr:panelHeader text="Header 3">
+                <tr:panelList rows="2" inlineStyle="width: 200px;">
+                    <tr:goLink text="link 1"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 2"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 3"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 4"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 5"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 6"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 7"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 8"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                </tr:panelList>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+        <tr:showDetailItem text="Tab 4">
+            <tr:panelHeader text="Header 4">
+                <tr:panelFormLayout>
+                    <tr:inputText readOnly="true" label="Another text" styleClass="AFDataText"/>
+                </tr:panelFormLayout>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+        <tr:showDetailItem text="Tab 5">
+            <tr:panelHeader text="Header 5">
+                <tr:panelFormLayout>
+                    <tr:inputText readOnly="true" label="Label 5-1" styleClass="AFDataText"/>
+                </tr:panelFormLayout>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+    </tr:panelTabbed>
+
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbedBoth.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbedBoth.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbedBoth.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/panelTabbedBoth.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,54 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:panelTabbed position="both">
+        <tr:showDetailItem text="Trinidad" disabled="true"/>
+        <tr:showDetailItem text="Apache">
+            <tr:panelHeader text="Header 2">
+                <tr:panelFormLayout>
+                    <tr:inputText label="Text1"/>
+                    <tr:inputText label="Text2"/>
+                    <tr:inputText label="Text3"/>
+                </tr:panelFormLayout>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+        <tr:showDetailItem text="Tab 3">
+            <tr:panelHeader text="Header 3">
+                <tr:panelList rows="2" inlineStyle="width: 200px;">
+                    <tr:goLink text="link 1"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 2"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 3"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 4"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 5"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 6"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 7"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                    <tr:goLink text="link 8"
+                               destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_panelList.html"/>
+                </tr:panelList>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+        <tr:showDetailItem text="Tab 4">
+            <tr:panelHeader text="Header 4">
+                <tr:panelFormLayout>
+                    <tr:inputText readOnly="true" label="Another text" styleClass="AFDataText"/>
+                </tr:panelFormLayout>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+        <tr:showDetailItem text="Tab 5">
+            <tr:panelHeader text="Header 5">
+                <tr:panelFormLayout>
+                    <tr:inputText readOnly="true" label="Label 5-1" styleClass="AFDataText"/>
+                </tr:panelFormLayout>
+            </tr:panelHeader>
+        </tr:showDetailItem>
+    </tr:panelTabbed>
+
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTabbed/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,11 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The panelTabbed control can be used to display a group of contents that belongs to a
+    showDetailItem that is shown. Tab bar(s) with tabs representing the showDetailItem children is displayed.
+    The tab for the showDetailItem that is selected to be shown is highlighted and contents from the selected
+    showDetailItem is displayed. If none of the showDetailItem children are selected, the first showDetailItem that
+    is enabled is considered to be selected.
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTip/panelTip.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTip/panelTip.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTip/panelTip.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTip/panelTip.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,10 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:panelTip>
+        <tr:outputFormatted
+                value="Don't forget to go to the &lt;a href='http://myfaces.apache.org'&gt;MyFaces&lt;/a&gt; website."/>
+    </tr:panelTip>
+
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTip/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTip/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTip/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/panel/panelTip/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,7 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The panelTip Component provides a container for page or section level hints to the user.
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseColor/chooseColor.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseColor/chooseColor.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseColor/chooseColor.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseColor/chooseColor.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,18 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:panelGroupLayout>
+        <tr:inputColor id="colorInput" chooseId="colorChooser" label="Input Color"/>
+        <tr:spacer height="15px"/>
+        <tr:panelGroupLayout>
+            <tr:outputLabel for="colorChooser" value="Select color to input"/>
+            <tr:spacer height="5px"/>
+            <tr:panelHorizontalLayout>
+                <tr:spacer width="5px"/>
+                <tr:chooseColor id="colorChooser" width="18"
+                                colorData="#{requestContext.colorPalette.web216}"/>
+            </tr:panelHorizontalLayout>
+        </tr:panelGroupLayout>
+    </tr:panelGroupLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseColor/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseColor/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseColor/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseColor/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,18 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The chooseColor control creates a palette for picking colors. A chooseColor can display two sets of colors: 
+
+    <tr:panelList >
+        <tr:outputText value="A set of standard colors, as specified by the colorData attribute."/>
+        <tr:outputText value="A set of custom colors which extend the set of colors available in the standard palette.
+            Custom colors are specified by the customColorData attribute."/>
+    </tr:panelList>
+
+    <tr:spacer height="12px"/>
+
+    <tr:outputText value="Both the colorData and customColorData attributes accept both List and array objects,
+        each of which contain one java.awt.Color instance for each color to display. "/>
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseDate/chooseDate.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseDate/chooseDate.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseDate/chooseDate.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseDate/chooseDate.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,21 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad"
+                xmlns:f="http://java.sun.com/jsf/core">
+
+    <tr:panelGroupLayout>
+        <tr:outputFormatted value="&lt;b>Search Cheap Airline Tickets, by date:&lt;b>"/>
+        <tr:spacer height="25px"/>
+        <tr:panelHorizontalLayout valign="top">
+            <tr:spacer width="10px"/>
+            <tr:inputDate id="departDate" chooseId="dateChooser" label="Depart:"/>
+            <tr:spacer width="10px"/>
+            <tr:inputDate id="returnDate" chooseId="dateChooser" label="Return:"/>
+        </tr:panelHorizontalLayout>
+        <tr:spacer width="10px"/>
+        <tr:panelHorizontalLayout>
+            <tr:spacer width="15px"/>
+        <tr:chooseDate id="dateChooser" minValue="2004-07-01" maxValue="2014-12-31"/>
+        </tr:panelHorizontalLayout>
+    </tr:panelGroupLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseDate/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseDate/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseDate/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/chooseDate/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,25 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The chooseDate component is used in conjunction with a selectInputDate to allow the user
+    to quickly select a date value without having to navigate to a secondary window. The chooseDate is typically
+    used for tasks where selecting a date value is a critical part of the task flow. Instead of requiring the user
+    to select the date from a secondary window, a chooseDate can be displayed inline in the page contents. Users can
+    then select a date directly within the chooseDate, which will cause the currently focused selectInputDate to be
+    updated with the selected date. 
+
+    <tr:spacer height="12px"/>
+
+    <tr:outputText value="In order to indicate that a particular selectInputDate should be updated in response to
+        chooseDate selection changes, the the selectInputDate's &quot;chooseId&quot; attribute must be set to the id of
+        the associated chooseDate component. "/>
+
+    <tr:spacer height="12px"/>
+
+    <tr:outputText value="The chooseDate component uses partial page rendering to update itself as the user
+        navigates between months. In environments where partial page rendering is not supported, the chooseDate
+        component will not be rendered. Instead, the selectInputDate may provide access to a date picker in a secondary
+        window to facilitate date selection. "/>
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/selectBooleanCheckbox.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/selectBooleanCheckbox.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/selectBooleanCheckbox.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/selectBooleanCheckbox.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,17 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad"
+                xmlns:f="http://java.sun.com/jsf/core">
+
+    <tr:outputDocument value="Welcome to MyWebApp. If you want to continue to browse and use 
+    						  this web application you must agree to comply with and be bound 
+    						  by the terms and conditions of use, which together with our privacy 
+    						  policy govern MyWebApps’s relationship with you in relation to 
+    						  this website.">
+        <f:facet name="title">
+            <tr:outputText value="Terms and conditions for MyWebApp usage"/>
+        </f:facet>
+    </tr:outputDocument>
+    <tr:spacer height="15px"/>
+    <tr:selectBooleanCheckbox text="Accept terms in license agreement"/>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/selectBooleanCheckboxDetailed.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/selectBooleanCheckboxDetailed.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/selectBooleanCheckboxDetailed.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/selectBooleanCheckboxDetailed.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,10 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:selectBooleanCheckbox label="Label:"
+                      textAndAccessKey=" checkbox&amp;1"
+                      simple="false"
+                      accessKey="1"/>
+
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/selectBooleanCheckboxSimple.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/selectBooleanCheckboxSimple.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/selectBooleanCheckboxSimple.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/selectBooleanCheckboxSimple.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,10 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:selectBooleanCheckbox label="Label:"
+                      textAndAccessKey=" checkbox&amp;1"
+                      simple="true"
+                      accessKey="1"/>
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanCheckbox/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,9 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The selectBooleanCheckbox component maps to a standard browser input checkbox, which
+    toggles between selected and unselected states. It supports displaying a prompt, text, and messages. The text
+    contained by the selectBooleanCheckbox control will be displayed as the checkbox label.
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/selectBooleanRadio.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/selectBooleanRadio.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/selectBooleanRadio.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/selectBooleanRadio.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,13 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:selectBooleanRadio group="RadioButtons"
+                           text="radio4"
+                           accessKey="4"
+                           selected="true"/>
+    <tr:selectBooleanRadio group="RadioButtons"
+                           textAndAccessKey="radio5"/>
+    <tr:selectBooleanRadio text="radio6"
+                           group="RadioButtons"/>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/selectBooleanRadioDetailed.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/selectBooleanRadioDetailed.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/selectBooleanRadioDetailed.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/selectBooleanRadioDetailed.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,12 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:selectBooleanRadio group="RadioButtons"
+                           label="Select Radio 4"
+                           text="radio4"
+                           accessKey="4"
+                           simple="false"
+                           selected="false"/>
+
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/selectBooleanRadioSimple.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/selectBooleanRadioSimple.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/selectBooleanRadioSimple.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/selectBooleanRadioSimple.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,15 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad"
+                xmlns:f="http://java.sun.com/jsf/core">
+
+    <tr:outputDocument
+            value="Welcome to MyWebApp. If you want to continue to browse and use this web application you must agree to comply with and be bound by the terms and conditions of use, which together with our privacy policy govern MyWebApps’s relationship with you in relation to this website.">
+        <f:facet name="title">
+            <tr:outputText value="Terms and conditions for MyWebApp usage"/>
+        </f:facet>
+    </tr:outputDocument>
+    <tr:spacer height="15px"/>
+    <tr:selectBooleanRadio group="LicenseAgreement" text="I accept the terms in the license agreement"/>
+    <tr:selectBooleanRadio group="LicenseAgreement" text="I do not accept the terms in the license agreement"/>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectBooleanRadio/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,10 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The selectBooleanRadio component maps to a single browser input radio, grouped with all
+    other selectBooleanRadio controls in the same form which share the same &quot;group&quot; attribute. It supports
+    displaying a prompt, text, and messages. Radio buttons with the same &quot;group&quot; will be placed in the
+    same group with mutually exclusive selection, regardless of their physical placement on the page.
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectItem/selectItem.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectItem/selectItem.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectItem/selectItem.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectItem/selectItem.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,21 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="Installation Wizard"/>
+    <tr:spacer height="20px"/>
+    <tr:selectOneRadio label="Select the desired installation type: " >
+        <tr:selectItem label="Typical"/>
+        <tr:selectItem label="Complete"/>
+        <tr:selectItem label="Custom"/>
+    </tr:selectOneRadio>
+    <tr:spacer height="10px"/>
+    <tr:panelHorizontalLayout>
+        <tr:spacer width="5px"/>
+        <tr:commandButton text="&lt; Back" disabled="true"/>
+        <tr:spacer width="10px"/>
+        <tr:commandButton text="Next &gt;"/>
+        <tr:spacer width="25px"/>
+        <tr:commandButton text="Cancel"/>
+    </tr:panelHorizontalLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectItem/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectItem/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectItem/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectItem/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,9 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The selectItem tag represents a single item that the user may select from a list, choice,
+    radio, or shuttle Trinidad control. It may be used in place of the JSF selectItem or selectItems tags, but is
+    very similar (largely not requiring &quot;item&quot; in front of its attributes).
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckbox.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckbox.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckbox.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckbox.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,23 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="Installation Wizard"/>
+    <tr:spacer height="15px"/>
+    <tr:selectManyCheckbox id="IntallMenu" label="Select items to install:">
+        <tr:selectItem label="Static Content"/>
+        <tr:selectItem label="Default Document"/>
+        <tr:selectItem label="Directory Browse"/>
+        <tr:selectItem label="Aplication Request Routing 1.0"/>
+        <tr:selectItem label="URL Rewrite 1.1"/>
+    </tr:selectManyCheckbox>
+    <tr:spacer height="10px"/>
+    <tr:panelHorizontalLayout>
+        <tr:spacer width="5px"/>
+        <tr:commandButton text="&lt; Back"/>
+        <tr:spacer width="10px"/>
+        <tr:commandButton text="Next &gt;"/>
+        <tr:spacer width="25px"/>
+        <tr:commandButton text="Cancel"/>
+    </tr:panelHorizontalLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxDetailed.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxDetailed.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxDetailed.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxDetailed.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,23 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="Installation Wizard"/>
+    <tr:spacer height="15px"/>
+    <tr:selectManyCheckbox label="Select items to install:" simple="false">
+        <tr:selectItem label="Static Content" value="1"/>
+        <tr:selectItem label="Default Document" value="2"/>
+        <tr:selectItem label="Directory Browse" value="3"/>
+        <tr:selectItem label="Aplication Request Routing 1.0" value="4"/>
+        <tr:selectItem label="URL Rewrite 1.1" value="5"/>
+    </tr:selectManyCheckbox>
+    <tr:spacer height="10px"/>
+    <tr:panelHorizontalLayout>
+        <tr:spacer width="5px"/>
+        <tr:commandButton text="&lt; Back"/>
+        <tr:spacer width="10px"/>
+        <tr:commandButton text="Next &gt;"/>
+        <tr:spacer width="25px"/>
+        <tr:commandButton text="Cancel"/>
+    </tr:panelHorizontalLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxHorizontal.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxHorizontal.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxHorizontal.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxHorizontal.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,21 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="Installation Wizard"/>
+    <tr:spacer height="15px"/>
+    <tr:selectManyCheckbox label="Select items to install:" layout="horizontal">
+        <tr:selectItem label="Static Content" value="1"/>
+        <tr:selectItem label="Default Document" value="2"/>
+        <tr:selectItem label="Directory Browse" value="3"/>
+    </tr:selectManyCheckbox>
+    <tr:spacer height="10px"/>
+    <tr:panelHorizontalLayout>
+        <tr:spacer width="5px"/>
+        <tr:commandButton text="&lt; Back"/>
+        <tr:spacer width="10px"/>
+        <tr:commandButton text="Next &gt;"/>
+        <tr:spacer width="25px"/>
+        <tr:commandButton text="Cancel"/>
+    </tr:panelHorizontalLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxSimple.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxSimple.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxSimple.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxSimple.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,23 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="Installation Wizard"/>
+    <tr:spacer height="15px"/>
+    <tr:selectManyCheckbox label="Select items to install:" simple="true">
+        <tr:selectItem label="Static Content" value="1"/>
+        <tr:selectItem label="Default Document" value="2"/>
+        <tr:selectItem label="Directory Browse" value="3"/>
+        <tr:selectItem label="Aplication Request Routing 1.0" value="4"/>
+        <tr:selectItem label="URL Rewrite 1.1" value="5"/>
+    </tr:selectManyCheckbox>
+    <tr:spacer height="10px"/>
+    <tr:panelHorizontalLayout>
+        <tr:spacer width="5px"/>
+        <tr:commandButton text="&lt; Back"/>
+        <tr:spacer width="10px"/>
+        <tr:commandButton text="Next &gt;"/>
+        <tr:spacer width="25px"/>
+        <tr:commandButton text="Cancel"/>
+    </tr:panelHorizontalLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxVertical.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxVertical.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxVertical.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/selectManyCheckboxVertical.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,23 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="Installation Wizard"/>
+    <tr:spacer height="15px"/>
+    <tr:selectManyCheckbox label="Select items to install:" layout="vertical">
+        <tr:selectItem label="Static Content" value="1"/>
+        <tr:selectItem label="Default Document" value="2"/>
+        <tr:selectItem label="Directory Browse" value="3"/>
+        <tr:selectItem label="Aplication Request Routing 1.0" value="4"/>
+        <tr:selectItem label="URL Rewrite 1.1" value="5"/>
+    </tr:selectManyCheckbox>
+    <tr:spacer height="10px"/>
+    <tr:panelHorizontalLayout>
+        <tr:spacer width="5px"/>
+        <tr:commandButton text="&lt; Back"/>
+        <tr:spacer width="10px"/>
+        <tr:commandButton text="Next &gt;"/>
+        <tr:spacer width="25px"/>
+        <tr:commandButton text="Cancel"/>
+    </tr:panelHorizontalLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyCheckbox/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,9 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The selectManyCheckbox component creates a component which allows the user to select many
+    values from a series of checkboxes. It can contain any number of &lt;f:selectItem&gt;, &lt;f:selectItems&gt;, or
+    &lt;tr:selectItem&gt; components, each of which represents an available checkbox that the user may select.
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/selectManyListbox.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/selectManyListbox.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/selectManyListbox.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/selectManyListbox.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,17 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:selectManyListbox label="Select one/more scuba diving item(s):" size="4">
+        <tr:selectItem label="Buoyancy Compensators" value="1"/>
+        <tr:selectItem label="Dive Computers" value="2"/>
+        <tr:selectItem label="Scuba Fins" value="3"/>
+        <tr:selectItem label="Scuba Gauges" value="4"/>
+        <tr:selectItem label="Scuba Masks" value="5"/>
+        <tr:selectItem label="Scuba Octopuses" value="6"/>
+        <tr:selectItem label="Scuba Regulators" value="7"/>
+        <tr:selectItem label="Scuba Snorkels" value="8"/>
+        <tr:selectItem label="Scuba Tanks" value="9"/>
+        <tr:selectItem label="Scuba Weights and Belts" value="10"/>
+    </tr:selectManyListbox>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/selectManyListboxDetailed.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/selectManyListboxDetailed.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/selectManyListboxDetailed.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/selectManyListboxDetailed.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,17 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:selectManyListbox label="Select one/more scuba diving item(s):" size="4" simple="false">
+        <tr:selectItem label="Buoyancy Compensators" value="1"/>
+        <tr:selectItem label="Dive Computers" value="2"/>
+        <tr:selectItem label="Scuba Fins" value="3"/>
+        <tr:selectItem label="Scuba Gauges" value="4"/>
+        <tr:selectItem label="Scuba Masks" value="5"/>
+        <tr:selectItem label="Scuba Octopuses" value="6"/>
+        <tr:selectItem label="Scuba Regulators" value="7"/>
+        <tr:selectItem label="Scuba Snorkels" value="8"/>
+        <tr:selectItem label="Scuba Tanks" value="9"/>
+        <tr:selectItem label="Scuba Weights and Belts" value="10"/>
+    </tr:selectManyListbox>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/selectManyListboxSimple.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/selectManyListboxSimple.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/selectManyListboxSimple.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/selectManyListboxSimple.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,17 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:selectManyListbox label="Select one/more scuba diving item(s):" size="4" simple="true">
+        <tr:selectItem label="Buoyancy Compensators" value="1"/>
+        <tr:selectItem label="Dive Computers" value="2"/>
+        <tr:selectItem label="Scuba Fins" value="3"/>
+        <tr:selectItem label="Scuba Gauges" value="4"/>
+        <tr:selectItem label="Scuba Masks" value="5"/>
+        <tr:selectItem label="Scuba Octopuses" value="6"/>
+        <tr:selectItem label="Scuba Regulators" value="7"/>
+        <tr:selectItem label="Scuba Snorkels" value="8"/>
+        <tr:selectItem label="Scuba Tanks" value="9"/>
+        <tr:selectItem label="Scuba Weights and Belts" value="10"/>
+    </tr:selectManyListbox>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyListbox/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,9 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The UIXSelectManyListbox component creates a component which allows the user to select
+    many values from a list of items. It can contain any number of &lt;f:selectItem&gt;, &lt;f:selectItems&gt;, or
+    &lt;tr:selectItem&gt; components, each of which represents an available option that the user may select.
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyShuttle/selectManyShuttle.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyShuttle/selectManyShuttle.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyShuttle/selectManyShuttle.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyShuttle/selectManyShuttle.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,17 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+    
+    <tr:panelFormLayout>
+        <tr:outputText value="Add, to the shopping cart, the fishing items you want to buy:"/>
+        <tr:spacer height="15px"/>
+
+        <tr:selectManyShuttle leadingHeader="Available items:" trailingHeader="Shopping cart:">
+            <f:selectItem itemLabel="Reels" itemValue="1"/>
+            <f:selectItem itemLabel="Rods" itemValue="2"/>
+            <f:selectItem itemLabel="Lures" itemValue="3"/>
+            <f:selectItem itemLabel="Combos" itemValue="3"/>
+        </tr:selectManyShuttle>
+    </tr:panelFormLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyShuttle/selectManyShuttleShowDescription.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyShuttle/selectManyShuttleShowDescription.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyShuttle/selectManyShuttleShowDescription.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyShuttle/selectManyShuttleShowDescription.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,17 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:panelFormLayout>
+        <tr:outputText value="Add, to the shopping cart, the fishing items you want to buy:"/>
+        <tr:spacer height="15px"/>
+        <tr:selectManyShuttle leadingHeader="Available items:" trailingHeader="Shopping cart:"
+                              leadingDescShown="true">
+            <f:selectItem itemLabel="Reels" itemValue="1"/>
+            <f:selectItem itemLabel="Rods" itemValue="2"/>
+            <f:selectItem itemLabel="Lures" itemValue="3"/>
+            <f:selectItem itemLabel="Combos" itemValue="3"/>
+        </tr:selectManyShuttle>
+    </tr:panelFormLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyShuttle/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyShuttle/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyShuttle/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectManyShuttle/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,19 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The selectManyShuttle component provides a mechanism for selecting multiple values from a
+    list of values by allowing the user to move items between two lists. The &quot;value&quot; attribute of the
+    selectManyShuttle, like any other selectMany component, must be a List or array of values that correspond to a
+    value of one of the contained SelectItems. If a value of one of the SelectItems is in the List or array, that
+    item will appear in the trailing list. Looked at another way, you can change a selectManyListbox directly into
+    a selectManyShuttle; instead of the &quot;value&quot; driving which items are selected in the listbox, it
+    affects which items appear in the trailing list of the shuttle. 
+
+    <tr:spacer height="12px"/>
+
+    <tr:outputText value="The selectManyShuttle does not allow for reordering; the selectOrderShuttle component
+        adds this functionality to selectManyShuttle. selectManyShuttle also does not include automatic messaging
+        support, unlike most other Trinidad messaging components.  "/>
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/selectOneChoice.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/selectOneChoice.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/selectOneChoice.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/selectOneChoice.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,33 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="Installation Wizard"/>
+    <tr:spacer height="20px"/>
+    <tr:selectOneChoice label="Select your Country/Region: ">
+        <f:selectItem itemLabel="Austria"/>
+        <f:selectItem itemLabel="Belgium"/>
+        <f:selectItem itemLabel="Denmark"/>
+        <f:selectItem itemLabel="Finland"/>
+        <f:selectItem itemLabel="France"/>
+        <f:selectItem itemLabel="Germany"/>
+        <f:selectItem itemLabel="Italy"/>
+        <f:selectItem itemLabel="Luxembourg"/>
+        <f:selectItem itemLabel="Netherlands"/>
+        <f:selectItem itemLabel="Romania"/>
+        <f:selectItem itemLabel="Spain"/>
+        <f:selectItem itemLabel="Sweden"/>
+        <f:selectItem itemLabel="Switzerland"/>
+        <f:selectItem itemLabel="UK/Ireland"/>
+    </tr:selectOneChoice>
+    <tr:spacer height="20px"/>
+    <tr:panelHorizontalLayout>
+        <tr:spacer width="5px"/>
+        <tr:commandButton text="&lt; Back"/>
+        <tr:spacer width="10px"/>
+        <tr:commandButton text="Next &gt;"/>
+        <tr:spacer width="25px"/>
+        <tr:commandButton text="Cancel"/>        
+    </tr:panelHorizontalLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/selectOneChoiceDetailed.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/selectOneChoiceDetailed.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/selectOneChoiceDetailed.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/selectOneChoiceDetailed.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,33 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="Installation Wizard"/>
+    <tr:spacer height="20px"/>
+    <tr:selectOneChoice label="Select your Country/Region: " simple="false">
+        <f:selectItem itemLabel="Austria"/>
+        <f:selectItem itemLabel="Belgium"/>
+        <f:selectItem itemLabel="Denmark"/>
+        <f:selectItem itemLabel="Finland"/>
+        <f:selectItem itemLabel="France"/>
+        <f:selectItem itemLabel="Germany"/>
+        <f:selectItem itemLabel="Italy"/>
+        <f:selectItem itemLabel="Luxembourg"/>
+        <f:selectItem itemLabel="Netherlands"/>
+        <f:selectItem itemLabel="Romania"/>
+        <f:selectItem itemLabel="Spain"/>
+        <f:selectItem itemLabel="Sweden"/>
+        <f:selectItem itemLabel="Switzerland"/>
+        <f:selectItem itemLabel="UK/Ireland"/>
+    </tr:selectOneChoice>
+    <tr:spacer height="20px"/>
+    <tr:panelHorizontalLayout>
+        <tr:spacer width="5px"/>
+        <tr:commandButton text="&lt; Back"/>
+        <tr:spacer width="10px"/>
+        <tr:commandButton text="Next &gt;"/>
+        <tr:spacer width="25px"/>
+        <tr:commandButton text="Cancel"/>
+    </tr:panelHorizontalLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/selectOneChoiceSimple.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/selectOneChoiceSimple.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/selectOneChoiceSimple.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/selectOneChoiceSimple.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,33 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="Installation Wizard"/>
+    <tr:spacer height="20px"/>
+    <tr:selectOneChoice label="Select your Country/Region: " simple="true">
+        <f:selectItem itemLabel="Austria"/>
+        <f:selectItem itemLabel="Belgium"/>
+        <f:selectItem itemLabel="Denmark"/>
+        <f:selectItem itemLabel="Finland"/>
+        <f:selectItem itemLabel="France"/>
+        <f:selectItem itemLabel="Germany"/>
+        <f:selectItem itemLabel="Italy"/>
+        <f:selectItem itemLabel="Luxembourg"/>
+        <f:selectItem itemLabel="Netherlands"/>
+        <f:selectItem itemLabel="Romania"/>
+        <f:selectItem itemLabel="Spain"/>
+        <f:selectItem itemLabel="Sweden"/>
+        <f:selectItem itemLabel="Switzerland"/>
+        <f:selectItem itemLabel="UK/Ireland"/>
+    </tr:selectOneChoice>
+    <tr:spacer height="20px"/>
+    <tr:panelHorizontalLayout>
+        <tr:spacer width="5px"/>
+        <tr:commandButton text="&lt; Back"/>
+        <tr:spacer width="10px"/>
+        <tr:commandButton text="Next &gt;"/>
+        <tr:spacer width="25px"/>
+        <tr:commandButton text="Cancel"/>
+    </tr:panelHorizontalLayout>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneChoice/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,10 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The selectOneChoice component creates a menu-style component, which allows the user to
+    select a single value from a list of items. The selectOneChoice component contains any number of
+    &lt;f:selectItem&gt;, &lt;f:selectItems&gt;, or &lt;tr:selectItem&gt; components, each of which represents an
+    available option that the user may select.
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/selectOneListbox.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/selectOneListbox.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/selectOneListbox.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/selectOneListbox.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,13 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:selectOneListbox label="Select your default language:" size="3">
+        <f:selectItem itemLabel="English" itemValue="1"/>
+        <f:selectItem itemLabel="Deutsch" itemValue="2"/>
+        <f:selectItem itemLabel="Français" itemValue="3"/>
+        <f:selectItem itemLabel="Español" itemValue="4"/>
+        <f:selectItem itemLabel="Italiano" itemValue="5"/>
+    </tr:selectOneListbox>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/selectOneListboxDetailed.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/selectOneListboxDetailed.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/selectOneListboxDetailed.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/selectOneListboxDetailed.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,13 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:selectOneListbox simple="false" label="Select your default language:" size="3">
+        <f:selectItem itemLabel="English" itemValue="1"/>
+        <f:selectItem itemLabel="Deutsch" itemValue="2"/>
+        <f:selectItem itemLabel="Français" itemValue="3"/>
+        <f:selectItem itemLabel="Español" itemValue="4"/>
+        <f:selectItem itemLabel="Italiano" itemValue="5"/>
+    </tr:selectOneListbox>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/selectOneListboxSimple.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/selectOneListboxSimple.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/selectOneListboxSimple.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/selectOneListboxSimple.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,13 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:selectOneListbox simple="true" label="Select your default language:" size="3">
+        <f:selectItem itemLabel="English" itemValue="1"/>
+        <f:selectItem itemLabel="Deutsch" itemValue="2"/>
+        <f:selectItem itemLabel="Français" itemValue="3"/>
+        <f:selectItem itemLabel="Español" itemValue="4"/>
+        <f:selectItem itemLabel="Italiano" itemValue="5"/>
+    </tr:selectOneListbox>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/summary.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/summary.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/summary.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneListbox/summary.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,10 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    The UIXSelectOneListbox component creates a component which allows the user to select a
+    single value from a list of items. The UIXSelectOneListbox component contains any number of
+    &lt;f:selectItem&gt;, &lt;f:selectItems&gt;, or &lt;tr:selectItem&gt; components, each of which represents an
+    available option that the user may select.
+    
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadio.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadio.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadio.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadio.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,16 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="The average(arithmetic mean) of x and y is 20. 
+    					  If z=5, what is the average of x, y, and z?"/>
+    <tr:spacer height="15px"/>
+    <tr:selectOneRadio id="variants" label="The answer is:">
+        <f:selectItem itemLabel="8/3" itemValue="1"/>
+        <f:selectItem itemLabel="10" itemValue="2"/>
+        <f:selectItem itemLabel="12/2" itemValue="3"/>
+        <f:selectItem itemLabel="15" itemValue="4"/>
+        <f:selectItem itemLabel="17/2" itemValue="5"/>
+    </tr:selectOneRadio>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadioDetailed.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadioDetailed.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadioDetailed.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadioDetailed.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,16 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="The average(arithmetic mean) of x and y is 20. 
+    					  If z=5, what is the average of x, y, and z?"/>
+    <tr:spacer height="15px"/>
+    <tr:selectOneRadio id="variants" label="The answer is:" simple="false">
+        <f:selectItem itemLabel="8/3" itemValue="1"/>
+        <f:selectItem itemLabel="10" itemValue="2"/>
+        <f:selectItem itemLabel="12/2" itemValue="3"/>
+        <f:selectItem itemLabel="15" itemValue="4"/>
+        <f:selectItem itemLabel="17/2" itemValue="5"/>
+    </tr:selectOneRadio>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadioHorizontal.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadioHorizontal.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadioHorizontal.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadioHorizontal.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,16 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="The average(arithmetic mean) of x and y is 20. 
+    					  If z=5, what is the average of x, y, and z?"/>
+    <tr:spacer height="15px"/>
+    <tr:selectOneRadio id="variants" label="The answer is:" layout="horizontal">
+        <f:selectItem itemLabel="8/3" itemValue="1"/>
+        <f:selectItem itemLabel="10" itemValue="2"/>
+        <f:selectItem itemLabel="12/2" itemValue="3"/>
+        <f:selectItem itemLabel="15" itemValue="4"/>
+        <f:selectItem itemLabel="17/2" itemValue="5"/>
+    </tr:selectOneRadio>
+</ui:composition>
\ No newline at end of file

Added: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadioSimple.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadioSimple.xhtml?rev=903822&view=auto
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadioSimple.xhtml (added)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/components/select/selectOneRadio/selectOneRadioSimple.xhtml Wed Jan 27 20:37:29 2010
@@ -0,0 +1,16 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad">
+
+    <tr:outputText value="The average(arithmetic mean) of x and y is 20. 
+    					  If z=5, what is the average of x, y, and z?"/>
+    <tr:spacer height="15px"/>
+    <tr:selectOneRadio id="variants" label="The answer is:" simple="true">
+        <f:selectItem itemLabel="8/3" itemValue="1"/>
+        <f:selectItem itemLabel="10" itemValue="2"/>
+        <f:selectItem itemLabel="12/2" itemValue="3"/>
+        <f:selectItem itemLabel="15" itemValue="4"/>
+        <f:selectItem itemLabel="17/2" itemValue="5"/>
+    </tr:selectOneRadio>
+</ui:composition>
\ No newline at end of file