Author: msorokin
Date: 2009-03-18 12:14:23 -0400 (Wed, 18 Mar 2009)
New Revision: 13006
Added:
trunk/test-applications/richfaces-docs/web/src/main/webapp/queue.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-6419
Added skinning and standard components skinning
Added: trunk/test-applications/richfaces-docs/web/src/main/webapp/queue.xhtml
===================================================================
--- trunk/test-applications/richfaces-docs/web/src/main/webapp/queue.xhtml
(rev 0)
+++ trunk/test-applications/richfaces-docs/web/src/main/webapp/queue.xhtml 2009-03-18
16:14:23 UTC (rev 13006)
@@ -0,0 +1,41 @@
+<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<ui:composition
xmlns="http://www.w3.org/1999/xhtml"
+
xmlns:s="http://jboss.com/products/seam/taglib"
+
xmlns:ui="http://java.sun.com/jsf/facelets"
+
xmlns:f="http://java.sun.com/jsf/core"
+
xmlns:h="http://java.sun.com/jsf/html"
+
xmlns:rich="http://richfaces.org/rich"
+ template="layout/template.xhtml"
+
xmlns:a4j="http://richfaces.org/a4j">
+
+<ui:define name="body">
+
+
+ <h:messages globalOnly="true" styleClass="message"/>
+
+
+
+ <rich:panel>
+ <f:facet name="header">a4j:queue</f:facet>
+
+<h:form prependId="false" >
+<a4j:queue size="3" oncomplete="alert(request.queue.this)"
onsizeexceeded="alert('onsizeexceeded')" />
+
+<h:inputText value="#{queue.a}" >
+<a4j:support reRender="a" event="onkeyup" id="queue"
/>
+</h:inputText><br />
+<h:outputText value="#{queue.a}" id="a" />
+<br />
+
+<h:inputText value="#{queue.b}" >
+<a4j:support reRender="b" event="onchange" />
+</h:inputText><br />
+<h:outputText value="#{queue.b}" id="b" />
+<br />
+</h:form>
+
+ </rich:panel>
+
+</ui:define>
+</ui:composition>