diff options
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/TextBoxValidationCallback.php')
-rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/TextBoxValidationCallback.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/TextBoxValidationCallback.php b/tests/FunctionalTests/active-controls/protected/pages/TextBoxValidationCallback.php new file mode 100644 index 00000000..cf43bccd --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/TextBoxValidationCallback.php @@ -0,0 +1,11 @@ +<?php
+
+class TextBoxValidationCallback extends TPage
+{
+
+ function lookupZipCode()
+ {
+ $this->City->Text = "City: ".$this->Address->Text . ' Zip: '.$this->ZipCode->Text;
+ }
+}
+?>
\ No newline at end of file |