summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/TBaseValidator.php
diff options
context:
space:
mode:
authorxue <>2006-11-25 04:07:39 +0000
committerxue <>2006-11-25 04:07:39 +0000
commit0c2b2cc4bca094554f32daeaee360fc60784a247 (patch)
tree61f345ae4e3d96c99929486cb1a135132a645645 /framework/Web/UI/WebControls/TBaseValidator.php
parentbd0abbf49cbc1bc15d2c01ccd8aeba2cb8a91216 (diff)
doc fix.
Diffstat (limited to 'framework/Web/UI/WebControls/TBaseValidator.php')
-rw-r--r--framework/Web/UI/WebControls/TBaseValidator.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/Web/UI/WebControls/TBaseValidator.php b/framework/Web/UI/WebControls/TBaseValidator.php
index 6f32ae4f..626bf13e 100644
--- a/framework/Web/UI/WebControls/TBaseValidator.php
+++ b/framework/Web/UI/WebControls/TBaseValidator.php
@@ -200,9 +200,9 @@ abstract class TBaseValidator extends TLabel implements IValidator
* The client-side validator supports the following events.
* # <tt>OnValidate</tt> -- raised before client-side validation is
* executed.
- * # <tt>OnSuccess</tt> -- raised after client-side validation is completed
+ * # <tt>OnValidationSuccess</tt> -- raised after client-side validation is completed
* and is successfull, overrides default validator error messages updates.
- * # <tt>OnError</tt> -- raised after client-side validation is completed
+ * # <tt>OnValidationError</tt> -- raised after client-side validation is completed
* and failed, overrides default validator error message updates.
*
* You can attach custom javascript code to each of these events
@@ -577,10 +577,10 @@ abstract class TBaseValidator extends TLabel implements IValidator
* The <tt>OnValidate</tt> event is raise before the validator validation
* functions are called.
*
- * The <tt>OnSuccess</tt> event is raised after the validator has successfully
+ * The <tt>OnValidationSuccess</tt> event is raised after the validator has successfully
* validate the control.
*
- * The <tt>OnError</tt> event is raised after the validator fails validation.
+ * The <tt>OnValidationError</tt> event is raised after the validator fails validation.
*
* See the quickstart documentation for further details.
*