From: Argiris K. <be...@us...> - 2006-02-08 20:42:18
|
Update of /cvsroot/magicajax/magicajax/Core/UI/Controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4338/Core/UI/Controls Modified Files: AjaxZone.cs Log Message: Updated docs Index: AjaxZone.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/UI/Controls/AjaxZone.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AjaxZone.cs 3 Jan 2006 01:49:09 -0000 1.4 --- AjaxZone.cs 8 Feb 2006 20:42:10 -0000 1.5 *************** *** 10,15 **** /// <remarks> /// It's an AjaxPanel that has the MagicAjax attribute "AjaxLocalScope" set to true. ! /// It is provided for convenience and readability. Please read the documentation ! /// about "AjaxLocalScope" to find out what is the effect of this attribute. /// </remarks> [Designer("MagicAjax.UI.Design.AjaxPanelDesigner, MagicAjax"), --- 10,24 ---- /// <remarks> /// It's an AjaxPanel that has the MagicAjax attribute "AjaxLocalScope" set to true. ! /// It is provided for convenience and readability. ! /// ! /// When an AjaxCall is invoked from a control inside an AjaxZone, only the values of the ! /// form elements that are contained inside this AjaxZone will be sent to the server ! /// and the server will check for changes and "reflect" only the AjaxPanels that are ! /// inside the AjaxZone. This helps reduce the Ajax traffic and speed up a bit the ! /// server response. It's intented for isolated and independent portions of a page ! /// like UserControls. ! /// ! /// An AjaxZone can contain other AjaxZones. A control belongs to the AjaxZone that is ! /// its immediate parent. /// </remarks> [Designer("MagicAjax.UI.Design.AjaxPanelDesigner, MagicAjax"), |