summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/DynamicRepeaterDataTest.page
blob: 913f6a177b89af1ee25d150d143a976989adebe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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:TJavascriptLogger />

</com:TForm>