summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveRepeater/RegionDisplay.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'demos/quickstart/protected/pages/ActiveControls/Samples/TActiveRepeater/RegionDisplay.tpl')
-rw-r--r--demos/quickstart/protected/pages/ActiveControls/Samples/TActiveRepeater/RegionDisplay.tpl34
1 files changed, 0 insertions, 34 deletions
diff --git a/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveRepeater/RegionDisplay.tpl b/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveRepeater/RegionDisplay.tpl
deleted file mode 100644
index 0ab9b164..00000000
--- a/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveRepeater/RegionDisplay.tpl
+++ /dev/null
@@ -1,34 +0,0 @@
-<tr>
-<com:TTableCell ID="Cell"
- ForeColor="white"
- BackColor="<%# $this->ItemIndex%2 ? '#6078BF' : '#809FFF' %>"
- Text="<%#$this->Data['name'] %>"
- />
-<td>
-
-<com:TActiveRepeater ID="Repeater" OnItemCreated="itemCreated">
-<prop:HeaderTemplate>
-<table cellspacing="1">
-</prop:HeaderTemplate>
-
-<prop:ItemTemplate>
-<com:TTableRow ID="Row">
- <com:TTableCell Width="70px">
- <%#$this->Data['name'] %>
- </com:TTableCell>
- <com:TTableCell Width="20">
- <%#$this->Data['age'] %>
- </com:TTableCell>
- <com:TTableCell Width="150px">
- <%#$this->Data['position'] %>
- </com:TTableCell>
-</com:TTableRow>
-</prop:ItemTemplate>
-
-<prop:FooterTemplate>
-</table>
-</prop:FooterTemplate>
-</com:TActiveRepeater>
-
-</td>
-</tr>