diff options
author | tof <> | 2008-04-21 09:33:48 +0000 |
---|---|---|
committer | tof <> | 2008-04-21 09:33:48 +0000 |
commit | 8ef2f1302eed08d7bca37ef257f635ddf3a4d7ec (patch) | |
tree | 463fae1725ff4f792e6b54830048a275f1e9c4d8 | |
parent | 4e457bdec10808da00054c6fcde26b53452f5bc5 (diff) |
Add a small note in documentation about TCallbackClientSide events.
-rw-r--r-- | framework/Web/UI/ActiveControls/TCallbackClientSide.php | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/framework/Web/UI/ActiveControls/TCallbackClientSide.php b/framework/Web/UI/ActiveControls/TCallbackClientSide.php index 55be341d..1e9a816f 100644 --- a/framework/Web/UI/ActiveControls/TCallbackClientSide.php +++ b/framework/Web/UI/ActiveControls/TCallbackClientSide.php @@ -18,11 +18,18 @@ *
* - <b>onPreDispatch</b> executed before a request is dispatched.
* - <b>onUninitialized</b> executed when callback request is uninitialized.
- * - <b>onLoading</b> executed when callback request is initiated
- * - <b>onLoaded</b> executed when callback request begins.
+ * - <b>onLoading</b>* executed when callback request is initiated
+ * - <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.
- *
+ * + * * 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. + * + * 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.
|