Author: smukhina
Date: 2007-07-10 08:35:55 -0400 (Tue, 10 Jul 2007)
New Revision: 1578
Modified:
trunk/docs/ajaxguide/en/src/main/docbook/included/support.xml
Log:
http://jira.jboss.com/jira/browse/RF-436
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/support.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/support.xml 2007-07-10 12:34:37 UTC
(rev 1577)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/support.xml 2007-07-10 12:35:55 UTC
(rev 1578)
@@ -75,8 +75,8 @@
<property><a4j:support></property>
</emphasis> functionality and there is no necessity to add the support to
them. </para>
</note>
- <para>With the help of <emphasis role="italic">
- <property>"onsubmit"</property></emphasis>
and <emphasis role="italic">
+ <para>With the help of <emphasis >
+ <property>"onsubmit"</property></emphasis>
and <emphasis >
<property>"oncomplete"</property></emphasis>
attributes the component allows using JavaScript before (for request sending conditions
checking) and after an AJAX response processing termination (for performance of
user-defined activities on the client) </para>
<para><emphasis
role="bold">Example:</emphasis></para>
<programlisting role="XML"><![CDATA[<h:selectOneMenu
value="#{bean.text}">
@@ -91,10 +91,10 @@
<itemizedlist>
<listitem>
<emphasis role="bold">Limitation of the submit area and
updating area for the request.</emphasis>
- <para><emphasis
role="italic"><property>"ajaxSingle"</property></emphasis>
is an attribute that allows submission on the server only component sending a request, as
if the component presented on a separate form.
+ <para><emphasis
><property>"ajaxSingle"</property></emphasis> is an
attribute that allows submission on the server only component sending a request, as if the
component presented on a separate form.
</para>
- <para><emphasis
role="italic"><property>"limitToList"</property></emphasis>
is an attribute that allows to limit areas, which are updated after the responses. Only
these components defined in the reRender attribute are updated. </para>
+ <para><emphasis
><property>"limitToList"</property></emphasis> is
an attribute that allows to limit areas, which are updated after the responses. Only
these components defined in the reRender attribute are updated. </para>
</listitem>
</itemizedlist></para>
<para><emphasis role="bold">Example
1:</emphasis></para>
@@ -119,15 +119,15 @@
<itemizedlist>
<listitem>
<emphasis role="bold">Limitation of requests frequency and
updates quantity after the responses. </emphasis>
- <para><emphasis
role="italic"><property>"requestDelay"</property></emphasis>
is an attribute that defines a time interval in seconds minimally permissible between
responses.
+ <para><emphasis
><property>"requestDelay"</property></emphasis> is
an attribute that defines a time interval in seconds minimally permissible between
responses.
</para>
- <para><emphasis
role="italic"><property>"eventQueue"</property></emphasis>
is an attribute for naming of the queue where the next response is kept in till its
processing, but if the next event comes in till this time is over, the waiting event is
taken away, replacing with a new one.
+ <para><emphasis
><property>"eventQueue"</property></emphasis> is an
attribute for naming of the queue where the next response is kept in till its processing,
but if the next event comes in till this time is over, the waiting event is taken away,
replacing with a new one.
</para>
- <para><emphasis
role="italic"><property>"ignoreDupResponces"</property></emphasis>
is an attribute that allows to disable any updates on the client after an AJAX request if
another AJAX request is already sent.
+ <para><emphasis
><property>"ignoreDupResponces"</property></emphasis>
is an attribute that allows to disable any updates on the client after an AJAX request if
another AJAX request is already sent.
</para>
- <para><emphasis
role="italic"><property>"timeout"</property></emphasis>
is an attribute that allows to set a time interval in millisecond to define a maximum time
period of response wait time. In case of the interval interaction, a new request is sent
and the previous one is canceled. Postprocessing of a response isn't performed.
+ <para><emphasis
><property>"timeout"</property></emphasis> is an
attribute that allows to set a time interval in millisecond to define a maximum time
period of response wait time. In case of the interval interaction, a new request is sent
and the previous one is canceled. Postprocessing of a response isn't performed.
</para>
<para><emphasis
role="bold">Example:</emphasis></para>
<programlisting role="XML"><![CDATA[<h:form>
@@ -137,7 +137,7 @@
</h:inputText>
<h:outputText value="#{person.name}" id="test"/>
</form>]]></programlisting>
- <para>This example clearly shows mentioned above attributes. If quick
typing in a text field happens, every next requests sending is delayed for a second and
requests quantity is reduced. The requests are kept in the queue
"myQueue" till its the sending.
+ <para>This example clearly shows mentioned <ulink
url="index.html#support">above</ulink> attributes. If quick typing in a
text field happens, every next requests sending is delayed for a second and requests
quantity is reduced. The requests are kept in the queue "myQueue" till
its the sending.
Moreover, if the next request is already sent, the rerendering after the previous request
is banned, and
it helps to avoid unnecessary processing on the client.</para>
</listitem>