This tag is used to render the header of a <netui-data:repeater> tag.
<netui-data:repeaterHeader />
There is no data item present at the time that the <netui-data:repeaterHeader> renders
(because the iteration of
the <netui-data:repeater> tag has not yet begun), so tags in the
body can not reference the {container...} data binding context to access
the current item in the data set, though other databinding contexts are available.
<netui-data:repeater dataSource="{pageFlow.myDataSet}">
<netui-data:repeaterHeader>
<table border="1">
<tr>
<td><b>index</b></td>
<td><b>name</b></td>
</tr>
</netui-data:repeaterHeader>
<netui-data:repeaterItem>
<tr>
<td>
<netui:label value="{container.index}" />
</td>
<td>
<netui:label value="{container.item}" />
</td>
</tr>
</netui-data:repeaterItem>
<netui-data:repeaterFooter>
</table>
</netui-data:repeaterFooter>
</netui-data:repeater>
<netui-data:repeater> Tag Sample
Presenting Complex Data Sets in JSPs (Repeater Tags section)