From 91fe694c8755aa2d05743946a3681be7232420b6 Mon Sep 17 00:00:00 2001 From: wei <> Date: Mon, 4 Dec 2006 00:17:43 +0000 Subject: propage changes to OnError and OnSuccess for validators ClientSide. --- .../active-controls/protected/pages/Sessioned/PageStateTest.page | 4 ++-- .../active-controls/protected/pages/Sessioned/PageStateTest.php | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'tests/FunctionalTests/active-controls') diff --git a/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.page b/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.page index 5d7f451b..fdd4a604 100644 --- a/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.page @@ -2,8 +2,8 @@ + CustomData="0" + Text="Click Me!" OnClick="button1_oncallback" /> 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"; } } -- cgit v1.2.3