diff options
author | wei <> | 2006-06-22 11:55:46 +0000 |
---|---|---|
committer | wei <> | 2006-06-22 11:55:46 +0000 |
commit | 817da66e1cb3548f728db9ff4a96e783ed7522b5 (patch) | |
tree | 6a994ae26d05054a9becaa82d8839cc778c56113 /tests/FunctionalTests/active-controls/protected/pages/ControlAdapterTest.page | |
parent | 99ea5b7b4b90d0298f47223c0fc832b30c1903eb (diff) |
Update callback adapter
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/ControlAdapterTest.page')
-rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/ControlAdapterTest.page | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/ControlAdapterTest.page b/tests/FunctionalTests/active-controls/protected/pages/ControlAdapterTest.page new file mode 100644 index 00000000..f0f3044d --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/ControlAdapterTest.page @@ -0,0 +1,23 @@ +<com:TForm ID="form1"> + <h1>Control Adapter - State Tracking Tests</h1> + <com:TActiveButton ID="button1" Text="Test Button 1" /> + <com:TActiveButton ID="button2" Text="Test Button 2" + Attributes.onclick="alert('ok')" + Style.Font.Size="12" Style.BackColor="blue" Style.Height="2em" /> + + <div style="margin:1em; padding: 0.5em; border:1px solid #ccc; text-align:center"> + <com:TActiveButton ID="test1" Text="Enable/Disable Button 1" OnClick="change_enabled"/> + <com:TActiveButton ID="test2" Text="Hide/Show Button 1" OnClick="change_visible"/> + <br /> + <com:TActiveButton ID="test3" Text="Change Button 1 Tooltip" OnClick="change_tooltip"/> + <com:TActiveButton ID="test4" Text="Change Button 1 TabIndex" OnClick="change_tabindex"/> + <com:TActiveButton ID="test5" Text="Change Button 1 AccessKey" OnClick="change_accesskey"/> + <br /> + <com:TActiveButton ID="test6" Text="Change Button 1 BGColor" OnClick="change_bgcolor1"/> + <com:TActiveButton ID="test7" Text="Change Button 2 BGColor" OnClick="change_bgcolor2"/> + <br /> + <com:TActiveButton ID="test8" Text="Change Button 1 Attributes" OnClick="change_attributes1"/> + <com:TActiveButton ID="test9" Text="Change Button 2 Attributes" OnClick="change_attributes2"/> + </div> + <com:TJavascriptLogger /> +</com:TForm>
\ No newline at end of file |