summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.php
diff options
context:
space:
mode:
authorwei <>2006-08-29 12:53:23 +0000
committerwei <>2006-08-29 12:53:23 +0000
commit2db708960f4435e2b98518f8fa84cc036ac9f2eb (patch)
tree6dc4ae8a624bf2afeaadfbed5be81cdd8c1b0ffe /tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.php
parentf0a6fad58f8eae14554443081ffb166aaf71762a (diff)
Update active controls.
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.php')
-rw-r--r--tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.php b/tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.php
new file mode 100644
index 00000000..3fa5c7e2
--- /dev/null
+++ b/tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.php
@@ -0,0 +1,16 @@
+<?php
+
+class TInPlaceTextBoxTest extends TPage
+{
+ function load_text($sender, $param)
+ {
+ $sender->Text = "muahaha";
+ }
+
+ function label1_changed($sender, $param)
+ {
+ $this->status->Text = "Status: ". $sender->Text;
+ }
+}
+
+?> \ No newline at end of file