blob: a28bab6a537357b35696e32254d905d2905faeda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<com:TContent ID="Content">
<com:TTimeTriggeredCallback ID="Trigger"
ActiveControl.CausesValidation="false"
OnCallback="Page.onTriggerCallback" Interval="2" />
Count: <com:TActiveLabel ID="count" Text="0" />
<com:TTextBox ID="testBox" />
<com:TRequiredFieldValidator
ControlToValidate="testBox"
Display="Dynamic"
ErrorMessage="Please insert a Text." />
<com:TCheckBox Text="Test2" Attributes.OnClick="console.log(this.checked)" AutoPostBack="True" />
</com:TContent>
|