blob: 7863fafe026a4911b65b356833abe4b75db91281 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<com:TForm>
<h1>Dynamic Repeater Data Test</h1>
<com:TActiveButton Text="Click Me!" OnClick="button_clicked" OnCallback="button_callback"/>
<com:TActivePanel ID="panel1" ActiveControl.EnableUpdate="true">
<com:TRepeater id="_repeater">
<prop:ItemTemplate>
<com:TActiveButton Text="Button <%# $this->DataItem %>" OnClick="Page.rpt_button_clicked" />
<com:TActiveLabel ID="label1" />
</prop:ItemTemplate>
</com:TRepeater>
</com:TActivePanel>
</com:TForm>
|