diff options
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php')
-rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php | 17 |
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 |