summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/CallbackOptionsTest.page
diff options
context:
space:
mode:
authorwei <>2006-10-06 03:46:05 +0000
committerwei <>2006-10-06 03:46:05 +0000
commitfe60cc221f922ea362826e2d00431c5df28fe85f (patch)
tree9c0449718a862a5b51d62c4ac9697db15c13863f /tests/FunctionalTests/active-controls/protected/pages/CallbackOptionsTest.page
parent9fee2935d91e92235b068632d3608c748ef41bfe (diff)
fixed #410 #412
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/CallbackOptionsTest.page')
-rw-r--r--tests/FunctionalTests/active-controls/protected/pages/CallbackOptionsTest.page16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/CallbackOptionsTest.page b/tests/FunctionalTests/active-controls/protected/pages/CallbackOptionsTest.page
index 6e8b8a1e..3cecbade 100644
--- a/tests/FunctionalTests/active-controls/protected/pages/CallbackOptionsTest.page
+++ b/tests/FunctionalTests/active-controls/protected/pages/CallbackOptionsTest.page
@@ -1,6 +1,6 @@
<com:TForm ID="form1">
<h1>TCallbackOptions Test</h1>
-
+
<com:TCallbackOptions ID="options1">
<prop:ClientSide.OnLoading>
$("status").show();
@@ -12,23 +12,23 @@
Element.update("label1", "Button 1 has returned");
</prop:ClientSide.OnSuccess>
</com:TCallbackOptions>
-
+
<com:TActiveButton id="button1" Text="Button 1" ActiveControl.CallbackOptions="options1" />
<com:TActiveButton id="button2" Text="Button 2" ActiveControl.CallbackOptions="options1">
- <prop:ActiveControl.ClientSide.OnSuccess>
+ <prop:ClientSide.OnSuccess>
Element.update("label2", "Button 2 has returned");
- </prop:ActiveControl.ClientSide.OnSuccess>
+ </prop:ClientSide.OnSuccess>
</com:TActiveButton>
<com:TActiveButton id="button3" Text="Button 3">
- <prop:ActiveControl.ClientSide.OnSuccess>
+ <prop:ClientSide.OnSuccess>
Element.update("label3", "Button 3 has returned");
- </prop:ActiveControl.ClientSide.OnSuccess>
+ </prop:ClientSide.OnSuccess>
</com:TActiveButton>
-
+
<div id="label1">Label 1</div>
<div id="label2">Label 2</div>
<div id="label3">Label 3</div>
<div id="status" style="display:none; background-color: #c00; color:white; text-align:center; padding: 1em" >
- Loading...
+ Loading...
</div>
</com:TForm> \ No newline at end of file