blob: ac82465c4dc3e35532088b7cd167356f4b74a9f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<com:TRepeater ID="Categories">
<prop:HeaderTemplate>
<div class="selectAllGroups">
<%[ All ]%>
<com:TCheckBox CssClass="box" Checked="True" />
</div>
</prop:HeaderTemplate>
<prop:ItemTemplate>
<div class="selectGroup">
<%# $this->Data->Name %>
<com:TCheckBox CssClass="box" Checked="True">
<prop:Value><%# $this->Data->ID %></prop:Value>
</com:TCheckBox>
</div>
</prop:ItemTemplate>
</com:TRepeater>
|