summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php
diff options
context:
space:
mode:
authorwei <>2007-01-04 11:23:26 +0000
committerwei <>2007-01-04 11:23:26 +0000
commitdd028bec3822d1d9c28c35d599d687e038c7705f (patch)
treef3d2fb7f95073ea481a4dec86f0f0d30c7fe3588 /tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php
parentcac90ea6547fe194ab6ab101dfe11a0b751823ca (diff)
Add chat demo and tutorial.
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php')
-rw-r--r--tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php b/tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php
new file mode 100644
index 00000000..84099114
--- /dev/null
+++ b/tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php
@@ -0,0 +1,17 @@
+<?php
+
+class ClientSideDispatch extends TPage
+{
+
+ function method1($sender, $param)
+ {
+ $this->status1->Text = "Method 1 callback with parameter: {$param->CallbackParameter}";
+ }
+
+ function method2($sender, $param)
+ {
+ $this->status2->Text = "Method 2 callback";
+ }
+}
+
+?> \ No newline at end of file