blob: ba4b75e435c3db0d58b1823972aa7f67d92d6d4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<com:TContent ID="Content">
repeater bug<br/>
<com:TActiveLabel ID="myLabel" Text="Some Text" Display="None" />
<com:TRepeater ID="Repeater" EnableViewState="true" >
<prop:ItemTemplate>
<com:TActiveButton Text="inside" OnCallback="Page.changeText" />
</prop:ItemTemplate>
</com:TRepeater>
<com:TActiveButton Text="outside" OnCallback="Page.changeText" />
<br/><br/>
radiobutton bug<br>
<com:TActiveRadioButton ID="myRadioButton"/>
<com:TActiveButton Text="check RadioButton" OnCallback="Page.checkRadioButton" />
<com:TActiveButton Text="uncheck RadioButton" OnCallback="Page.uncheckRadioButton" />
</com:TContent>
|