Author: adelbene
Date: Mon Feb 2 15:48:37 2015
New Revision: 1656498
URL: http://svn.apache.org/r1656498
Log:
Added a hint to wicketstuff stateless module.
Modified:
wicket/common/site/trunk/_site/guide/guide/src/docs/guide/ajax/ajax_3.gdoc
Modified:
wicket/common/site/trunk/_site/guide/guide/src/docs/guide/ajax/ajax_3.gdoc
URL:
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/src/docs/guide/ajax/ajax_3.gdoc?rev=1656498&r1=1656497&r2=1656498&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/src/docs/guide/ajax/ajax_3.gdoc
(original)
+++ wicket/common/site/trunk/_site/guide/guide/src/docs/guide/ajax/ajax_3.gdoc
Mon Feb 2 15:48:37 2015
@@ -110,4 +110,8 @@ dynamicLabel.add(new AbstractAjaxTimerBe
}
});
add(dynamicLabel);
-{code}
\ No newline at end of file
+{code}
+
+{note}
+As side effect AJAX components and behaviors make their hosting page stateful.
As a consequence they are unfit for those pages that must stay stateless.
Project WicketStuff provides a module with a stateless version of the most
common AJAX components and behaviors. You can find more informations on this
module in Appendix B.
+{note}