Author: smukhina
Date: 2007-07-05 04:23:01 -0400 (Thu, 05 Jul 2007)
New Revision: 298
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/a4jUGusingAJAX.xml
Log:
http://jira.jboss.com/jira/browse/EXIN-373
some words are marked with italic font style
Modified: trunk/docs/userguide/en/src/main/docbook/modules/a4jUGusingAJAX.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/a4jUGusingAJAX.xml 2007-07-04
19:04:49 UTC (rev 297)
+++ trunk/docs/userguide/en/src/main/docbook/modules/a4jUGusingAJAX.xml 2007-07-05
08:23:01 UTC (rev 298)
@@ -112,7 +112,7 @@
<para>In order to create AJAX4JSF applications properly, keep the following
points in mind:</para>
<itemizedlist>
<listitem>
- The AJAX framework should not append or delete, but only replace elements on the
page. For successful updates, an element with the same ID as in the response must exist on
the page. If you'd like to append any code to a page, put in a placeholder for it
(any empty element). For the same reason, it's recommended to place messages in
the<emphasis role="italic">
+ The AJAX framework should not append or delete, but only replace elements on the
page. For successful updates, an element with the same ID as in the response must exist on
the page. If you'd like to append any code to a page, put in a placeholder for it
(any empty element). For the same reason, it's recommended to place messages in
the<emphasis >
<property>"AjaxOutput"</property>
</emphasis> component (as no messages is also a message).
</listitem>
@@ -167,14 +167,14 @@
<para>Most important attributes of components that provide AJAX request
calling features are:</para>
<itemizedlist>
<listitem>
- <emphasis role="italic">
+ <emphasis >
<property>"reRender"</property>
</emphasis>attribute as it was mentioned <link
linkend="SendAnAJAXRequest">before</link> specifies components to be
reRendered
after AJAX response. The attribute can be specified using EL expression and
formed dynamicaly on the
server side (see <ulink url="index.html#FAQ">FAQ
chapter</ulink>).
</listitem>
<listitem>
- <emphasis role="italic">
+ <emphasis >
<property>"RequestDelay"</property>
</emphasis> attribute is used for a requests frequency regulation.
</listitem>
@@ -187,18 +187,18 @@
</para>
<itemizedlist>
<listitem>
- <emphasis role="italic">
+ <emphasis >
<property>"EventsQueue"</property>
</emphasis> is a queue that stores the next request.
</listitem>
<listitem>
- <emphasis role="italic">
+ <emphasis >
<property>"LimitToList"</property>
</emphasis> attribute is used to regulate updatable regions. Setting
it to true limits the updatable areas only to ones specified in a
reRender list, in other case all Output Panels of the region are updated.
</listitem>
- <listitem> <emphasis role="italic">
+ <listitem> <emphasis >
<property>"ajaxSingle"</property>
</emphasis> attributes specify regions to be sent with a request,
if "false" it is a full region, in other case
it's is only a control caused
@@ -288,9 +288,9 @@
<section id="SessionExpiredHandling">
<?dbhtml filename="SessionExpiredHandling.html"?>
<title>Session Expired Handling</title>
- <para>Beginning with Ajax4jsf version 1.0.5 it's possible to redefine
also the <emphasis role="italic">
+ <para>Beginning with Ajax4jsf version 1.0.5 it's possible to redefine
also the <emphasis >
<property>"onExpired"</property>
- </emphasis> framework method that is called on the <emphasis
role="italic">
+ </emphasis> framework method that is called on the <emphasis >
<property>"Session Expiration"</property>
</emphasis> event.</para>
<programlisting role="JAVA"><![CDATA[A4J.AJAX.onExpired =
function(loc,expiredMsg){
@@ -301,13 +301,13 @@
<para>Here the function receives in params:</para>
<itemizedlist>
<listitem>loc - URL of the current page (on demand can be updated)
</listitem>
- <listitem>expiredMsg - a default message on <emphasis
role="italic">
+ <listitem>expiredMsg - a default message on <emphasis >
<property>"Session Expiration"</property>
</emphasis>event.</listitem>
</itemizedlist>
<note>
<title>Note:</title>
-Until the version 1.0.5 the method can't be redefined on <emphasis
role="italic">
+Until the version 1.0.5 the method can't be redefined on <emphasis >
<property>"Session Expiration"</property>,
</emphasis> a confirmation dialog with a request for view reloading was always
called.
</note>