diff options
author | wei <> | 2006-10-06 03:46:05 +0000 |
---|---|---|
committer | wei <> | 2006-10-06 03:46:05 +0000 |
commit | fe60cc221f922ea362826e2d00431c5df28fe85f (patch) | |
tree | 9c0449718a862a5b51d62c4ac9697db15c13863f /tests/FunctionalTests/active-controls/protected/pages/ActiveCheckBoxTest.page | |
parent | 9fee2935d91e92235b068632d3608c748ef41bfe (diff) |
fixed #410 #412
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/ActiveCheckBoxTest.page')
-rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/ActiveCheckBoxTest.page | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveCheckBoxTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveCheckBoxTest.page index 9ff09bb6..431d42f2 100644 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveCheckBoxTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveCheckBoxTest.page @@ -2,25 +2,25 @@ <h1>Active CheckBox Test</h1> <com:TActiveCheckBox ID="checkbox1" Text="CheckBox 1" OnCallback="checkbox_requested" /> <com:TActiveCheckBox ID="checkbox2" Text="CheckBox 2" OnCallback="checkbox_requested"> - <prop:ActiveControl.ClientSide OnLoading="$('status').show()" OnComplete="$('status').hide()" /> + <prop:ClientSide OnLoading="$('status').show()" OnComplete="$('status').hide()" /> </com:TActiveCheckBox> <div style="margin:1em; padding:0.5em; text-align:center; border:1px solid #ccc;"> <com:TActiveLabel ID="label1" Text="Label 1" /> </div> <div style="margin:1em; padding: 1em; text-align: center"> - <com:TActiveButton id="change_text1" + <com:TActiveButton id="change_text1" OnClick="change_checkbox1_text" Text="Change CheckBox 1 Text"/> <com:TActiveButton id="change_checked1" OnClick="change_checkbox1_checked" Text="Toggle CheckBox 1"/> - <com:TActiveButton id="change_text2" + <com:TActiveButton id="change_text2" OnClick="change_checkbox2_text" Text="Change CheckBox 2 Text"/> <com:TActiveButton id="change_checked2" OnClick="change_checkbox2_checked" Text="Toggle CheckBox 2"/> </div> - <div id="status" style="margin:1em; padding:0.5em; - text-align:center; - background-color:#900; + <div id="status" style="margin:1em; padding:0.5em; + text-align:center; + background-color:#900; color:white; display: none; position: absolute; right: 0; top: 0"> Loading... |