diff options
author | ctrlaltca@gmail.com <> | 2011-06-02 16:06:37 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-06-02 16:06:37 +0000 |
commit | 6394a6ffe3a9f3e4e698603b94503dc96f1e2652 (patch) | |
tree | 26dfde346742329d064d336936edf20fdb7cb81e /framework/Web | |
parent | b9f9a16d7eefc48ac489c8cb2b87749459bb3d38 (diff) |
upported documentation changes to trunk/
Diffstat (limited to 'framework/Web')
-rw-r--r-- | framework/Web/UI/ActiveControls/TCallbackClientSide.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/framework/Web/UI/ActiveControls/TCallbackClientSide.php b/framework/Web/UI/ActiveControls/TCallbackClientSide.php index 31b806c3..cc3b9449 100644 --- a/framework/Web/UI/ActiveControls/TCallbackClientSide.php +++ b/framework/Web/UI/ActiveControls/TCallbackClientSide.php @@ -22,6 +22,9 @@ * - <b>onLoaded</b>* executed when callback request begins.
* - <b>onInteractive</b> executed when callback request is in progress.
* - <b>onComplete</b>executed when callback response returns.
+ * - <b>onSuccess</b> executed when callback request returns and is successful.
+ * - <b>onFailure</b> executed when callback request returns and fails.
+ * - <b>onException</b> raised when callback request fails due to request/response errors.
*
* * Note that theses 2 events are not fired correctly by Opera. To make
* them work in this browser, Prado will fire them just after onPreDispatch.
@@ -29,22 +32,18 @@ * In a general way, onUninitialized, onLoading, onLoaded and onInteractive events
* are not implemented consistently in all browsers.When cross browser compatibility is
* needed, it is best to avoid use them
- *
+ *
* The OnSuccess and OnFailure events are raised when the
* response is returned. A successful request/response will raise
* OnSuccess event otherwise OnFailure will be raised.
*
- * - <b>onSuccess</b> executed when callback request returns and is successful.
- * - <b>onFailure</b> executed when callback request returns and fails.
- * - <b>onException</b> raised when callback request fails due to request/response errors.
- *
* - <b>PostState</b> true to collect the form inputs and post them during callback, default is true.
* - <b>RequestTimeOut</b> The request timeout in milliseconds.
* - <b>HasPriority</b> true to ensure that the callback request will be sent
* immediately and will abort existing prioritized requests. It does not affect
* callbacks that are not prioritized.
* - <b>EnablePageStateUpdate</b> enable the callback response to enable the
- * viewstate update. This will automatically set HasPrority to true when enabled.
+ * viewstate update. This will automatically set HasPriority to true when enabled.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
* @version $Id$
|