blob: aca51817789f81987c28f4163c6db15fa8ac7d80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<com:TContent ID="Content">
<com:TActivePanel ID="Main">
<com:TPanel ID="A" Visible="true">
<label>T1</label>
<com:TTextBox ID="T1" />
<com:TActiveButton Text="T1" ValidationGroup="G1" OnClick="clicked" />
<com:TRequiredFieldValidator ControlToValidate="T1" Text="T1-error"
ValidationGroup="G1" />
</com:TPanel>
<com:TPanel ID="B" Visible="false">
This is B
</com:TPanel>
<com:TActiveButton Text="showB" OnCallback="showBcallback" />
<com:TActiveButton Text="showA" OnCallback="showAcallback" />
</com:TActivePanel>
</com:TContent>
|