diff options
Diffstat (limited to 'tests/FunctionalTests/tickets/protected/pages/Ticket433.php')
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Ticket433.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket433.php b/tests/FunctionalTests/tickets/protected/pages/Ticket433.php new file mode 100644 index 00000000..2e5c1ff7 --- /dev/null +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket433.php @@ -0,0 +1,24 @@ +<?php +
+Prado::using('System.Web.UI.ActiveControls.*');
+
+class Ticket433 extends TPage
+{
+ public function onLoad($param)
+ {
+ if(!$this->IsPostBack)
+ $this->VoteClick->Text = "BEFORE click";
+ }
+
+ public function onUpdateVoteClick($sender, $param)
+ {
+ $sender->Text = 'AFTER click';
+ }
+
+ public function onUpdateVoteCallback($sender, $param)
+ {
+ $sender->Text .= ' CALLBACK DONE';
+ }
+}
+ +?>
\ No newline at end of file |