diff options
author | xue <> | 2006-01-21 17:29:40 +0000 |
---|---|---|
committer | xue <> | 2006-01-21 17:29:40 +0000 |
commit | 3fcf847e0cadfb9ede930f538c2f277483442175 (patch) | |
tree | 12534cf4b29c1d4676fd59ab47adb60e292bcb6c /demos/quickstart/protected/pages/Controls/Samples/TButton | |
parent | 99b56c855a597c606d349c7063d843539e65a6ed (diff) |
BE AWARE: Significant change!
Changed event definition from XXX to OnXXX.
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Samples/TButton')
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TButton/Home.page | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TButton/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TButton/Home.page index eb1bc235..3d49331f 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TButton/Home.page +++ b/demos/quickstart/protected/pages/Controls/Samples/TButton/Home.page @@ -19,7 +19,7 @@ Button with customized color, font and width: <tr><td class="samplenote">
A click button:
</td><td class="sampleaction">
-<com:TButton Text="click me" Click="buttonClicked" />
+<com:TButton Text="click me" OnClick="buttonClicked" />
</td></tr>
<tr><td class="samplenote">
@@ -27,7 +27,7 @@ A command button: </td><td class="sampleaction">
<com:TButton
Text="click me"
- Command="buttonClicked"
+ OnCommand="buttonClicked"
CommandName="test"
CommandParameter="value"
/>
|