You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2007/09/18 16:56:36 UTC

svn commit: r576937 - /myfaces/trinidad/trunk/trinidad/trinidad-examples/trinidad-demo/src/main/webapp/components/statusIndicator.jspx

Author: matzew
Date: Tue Sep 18 07:56:33 2007
New Revision: 576937

URL: http://svn.apache.org/viewvc?rev=576937&view=rev
Log:
added busy/ready facet to demo

Modified:
    myfaces/trinidad/trunk/trinidad/trinidad-examples/trinidad-demo/src/main/webapp/components/statusIndicator.jspx

Modified: myfaces/trinidad/trunk/trinidad/trinidad-examples/trinidad-demo/src/main/webapp/components/statusIndicator.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad/trinidad-examples/trinidad-demo/src/main/webapp/components/statusIndicator.jspx?rev=576937&r1=576936&r2=576937&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad/trinidad-examples/trinidad-demo/src/main/webapp/components/statusIndicator.jspx (original)
+++ myfaces/trinidad/trunk/trinidad/trinidad-examples/trinidad-demo/src/main/webapp/components/statusIndicator.jspx Tue Sep 18 07:56:33 2007
@@ -45,7 +45,14 @@
 
             <tr:outputFormatted styleUsage="instruction"
                                value="&lt;b>A second statusIndicator&lt;/b>"/>
-            <tr:statusIndicator/>
+            <tr:statusIndicator>
+              <f:facet name="busy">
+                <tr:outputText value="Loading..." />
+              </f:facet>
+              <f:facet name="ready">
+                <tr:outputText value="Done!" />
+              </f:facet>
+            </tr:statusIndicator>
           </tr:panelGroupLayout>
         </tr:form>
  </tr:document>