Template file: Home.page
Class file: Home.php

/ActiveControls/Samples/TTimeTriggeredCallback/Home.page

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<com:TContent ID="body">
 
<h1>TTimeTriggeredCallback Samples</h1>
 
<table class="sampletable">
 
<tr><td class="samplenote">
A timer updating a label with the current time every 5 seconds:
</td><td class="sampleaction">
<com:TTimeTriggeredCallback ID="time1" Interval="5" OnCallback="timercallback" />
<com:TActiveButton
    Text="start timer"
    OnClick="startClicked"
/>
<com:TActiveButton
    Text="stop timer"
    OnClick="stopClicked"
/>
<com:TActiveLabel ID="label1" />
</td></tr>
 
</table>
 
</com:TContent>