diff options
author | wei <> | 2006-12-04 00:17:43 +0000 |
---|---|---|
committer | wei <> | 2006-12-04 00:17:43 +0000 |
commit | 91fe694c8755aa2d05743946a3681be7232420b6 (patch) | |
tree | 14d822b190fd729d141dbaa99cd26ed98e1b7940 /tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php | |
parent | 18ea316c553f7ccfc18b73f0c987de007f11b275 (diff) |
propage changes to OnError and OnSuccess for validators ClientSide.
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php')
-rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php b/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php index abb6c8c8..4a488107 100644 --- a/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php +++ b/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php @@ -4,8 +4,9 @@ class PageStateTest extends TPage {
function button1_oncallback($sender, $param)
{
- sleep(rand(0,5));
- $this->label1->Text .= " button1 clicked ";
+ //sleep(rand(0,5));
+ $sender->CustomData = $sender->CustomData + 1;
+ $this->label1->Text = " button1 clicked ".$sender->CustomData." times";
}
}
|