summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/ActiveControls/Samples/TEventTriggeredCallback/Home.page
blob: 8cfa59de7d6ba2caf83f1f69c169a98bff5aac21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<com:TContent ID="body">

<h1>TEventTriggeredCallback Samples</h1>

<table class="sampletable">

<tr><td class="samplenote">
  A callback will be executed when the textbox receives and loses focus
</td><td class="sampleaction">
  <com:TTextBox ID="txt1" />
  <com:TEventTriggeredCallback ControlID="txt1" EventName="focus" OnCallback="txtFocused" />
  <com:TEventTriggeredCallback ControlID="txt1" EventName="blur" OnCallback="txtBlurred" />
  <com:TActiveLabel ID="label1" />
</td></tr>

</table>

</com:TContent>