diff options
author | wei <> | 2007-03-30 07:11:11 +0000 |
---|---|---|
committer | wei <> | 2007-03-30 07:11:11 +0000 |
commit | 96c0b5c35463387664db3fa69898d54a929eaa2a (patch) | |
tree | 19e2ee4be1ff30a651d4fed63c6b04a36778a5a6 /tests/FunctionalTests/tickets/protected/pages/Ticket542.php | |
parent | 62958aa45b4ccf5369b41b7e635582b1be0d1edc (diff) |
Fixed #538
Diffstat (limited to 'tests/FunctionalTests/tickets/protected/pages/Ticket542.php')
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Ticket542.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket542.php b/tests/FunctionalTests/tickets/protected/pages/Ticket542.php new file mode 100644 index 00000000..bcd32a04 --- /dev/null +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket542.php @@ -0,0 +1,23 @@ +<?php
+Prado::using('System.Web.UI.ActiveControls.*');
+class Ticket542 extends TPage {
+
+ public function slideUp($sender, $param) {
+ $this->CallbackClient->slideUp($this->TheBox);
+ }
+
+ public function blindUp($sender, $param) {
+ $this->CallbackClient->blindUp($this->TheBox);
+ }
+
+ public function slideDown($sender, $param) {
+ $this->CallbackClient->slideDown($this->TheBox);
+ }
+
+ public function blindDown($sender, $param) {
+ $this->CallbackClient->blindDown($this->TheBox);
+ }
+
+}
+
+?>
\ No newline at end of file |