blob: f3df76a2199547100d6754efc453558cf5fd643b (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<com:TContent ID="Content">
<h3 class="ContentAlternating">Some AJAX Tests</h3>
<com:TPanel CssClass="Content">
<!-- <com:TTextBox
Id="SelectedBrick"
Text="LContentBrick" />-->
<com:TDropDownList Id="MySize">
<com:TListItem
Text="Large"
Value="Large" />
<com:TListItem
Text="Small"
Value="Small" />
</com:TDropDownList>
<com:TActiveButton
ID="insertBrick"
Text="Insert Brick"
OnCallback="insertBrick" />
</com:TPanel>
cell:
<com:TActivePanel
ID="placeholder"
Style="display: auto; border: 1px solid red">
in
</com:TActivePanel>
<com:TActivePanel
ID="AjaxInsertPoint"
Style="visibility: auto; border: 1px solid blue">
AIP
</com:TActivePanel>
</com:TContent>
|