[richfaces-svn-commits] JBoss Rich Faces SVN: r12220 - trunk/docs/userguide/en/src/main/docbook/included.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Mon Jan 12 08:23:42 EST 2009


Author: msorokin
Date: 2009-01-12 08:23:42 -0500 (Mon, 12 Jan 2009)
New Revision: 12220

Modified:
   trunk/docs/userguide/en/src/main/docbook/included/queue.xml
Log:
https://jira.jboss.org/jira/browse/RF-4664
correct a snippet

Modified: trunk/docs/userguide/en/src/main/docbook/included/queue.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/queue.xml	2009-01-12 13:21:43 UTC (rev 12219)
+++ trunk/docs/userguide/en/src/main/docbook/included/queue.xml	2009-01-12 13:23:42 UTC (rev 12220)
@@ -102,12 +102,12 @@
         <programlisting role="XML"><![CDATA[...
 <h:form>
 <a4j:queue size="2"  requestDelay="500" sizeExceededBehavior="dropNext" onsizeexceeded="alert('The size of the queue is exceeded')"  />
-<h:inputText value="#{queue.a}" >
+<h:inputText value="#{bean.a}" >
 <a4j:support event="onkeyup" />
 </h:inputText>
-<h:inputText value="#{queue.b}"  >
+<h:inputText value="#{bean.b}"  >
 <a4j:support event="onblur" />
-<h:selectBooleanCheckbox value="#{queue.check}" id="checkboxID" >
+<h:selectBooleanCheckbox value="#{bean.check}" id="checkboxID" >
 <a4j:support id="checkboxSupport" event="onchange" />
 </h:selectBooleanCheckbox>
 </h:form>
@@ -128,7 +128,7 @@
         <programlisting role="XML"><![CDATA[...
 <h:form>
 <a4j:queue requestDelay="500" ignoreDupResponses="true"   />
-<h:inputText value="#{queue.a}" >
+<h:inputText value="#{bean.a}" >
 <a4j:support event="onkeyup" />
 </h:form>
 ...]]></programlisting>
@@ -153,7 +153,7 @@
         <programlisting role="XML"><![CDATA[...
 <h:form>
 <a4j:queue timeout="1000" />
-<h:inputText value="#{queue.a}" >
+<h:inputText value="#{bean.a}" >
 <a4j:support event="onkeyup" />
 </h:form>
 ...]]></programlisting>
@@ -180,9 +180,9 @@
 <h:form  >
 <a4j:queue oncomplete="alert(request.queue.getSize())" requestDelay="1000" />
 
-<h:inputText value="#{queue.a}"  >
+<h:inputText value="#{bean.a}"  >
 <a4j:support event="onkeyup" />
-<h:selectBooleanCheckbox value="#{queue.check}" >
+<h:selectBooleanCheckbox value="#{bean.check}" >
 <a4j:support event="onchange"/>
 </h:selectBooleanCheckbox>
 </h:form>




More information about the richfaces-svn-commits mailing list