diff options
author | wei <> | 2006-06-24 05:46:22 +0000 |
---|---|---|
committer | wei <> | 2006-06-24 05:46:22 +0000 |
commit | a6be5564823be40670e0cad8dc758557dbd37549 (patch) | |
tree | 13083fe7ea207b5426c9ee29afc36654e1ed623d /framework/Web/UI/ActiveControls/TActiveTextBox.php | |
parent | cb8b23aca4c682c58323f432aa38a88c7a695377 (diff) |
Update active controls.
Diffstat (limited to 'framework/Web/UI/ActiveControls/TActiveTextBox.php')
-rw-r--r-- | framework/Web/UI/ActiveControls/TActiveTextBox.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/framework/Web/UI/ActiveControls/TActiveTextBox.php b/framework/Web/UI/ActiveControls/TActiveTextBox.php index 2e207f92..950a5dcb 100644 --- a/framework/Web/UI/ActiveControls/TActiveTextBox.php +++ b/framework/Web/UI/ActiveControls/TActiveTextBox.php @@ -11,6 +11,11 @@ */
/**
+ * Load active control adapter.
+ */
+Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter');
+
+/**
* TActiveTextBox class.
*
* TActiveTextBox allows the {@link setText Text} property of the textbox to
@@ -58,16 +63,12 @@ class TActiveTextBox extends TTextBox implements ICallbackEventHandler, IActiveC /**
* Raises the callback event. This method is required by {@link
- * ICallbackEventHandler} interface. If {@link getCausesValidation
- * CausesValidation} is true, it will invoke the page's {@link TPage::
- * validate validate} method first. It will raise {@link onTextChanged
- * onTextChanged} event first and then the {@link onCallback OnCallback} event.
+ * ICallbackEventHandler} interface.
* This method is mainly used by framework and control developers.
* @param TCallbackEventParameter the event parameter
*/
public function raiseCallbackEvent($param)
{
- $this->raisePostDataChangedEvent($param);
$this->onCallback($param);
}
|