User-418270074 posted
Ah! Superb, thank you, I don't think I would have found that otherwise.
This is probably stating the obvious, but incase someone else needs something like this in the future this is what I ended up with for my dynamic filter repeater.
<asp:DynamicFilterRepeater DataSourceID="GridDataSource" ID="DynamicFilterRepeater1" runat="server">
<HeaderTemplate>
<div>Search</div>
</HeaderTemplate>
<ItemTemplate>
<div>
<asp:Label ID="Label1" runat="server" Text='<%# Eval("DisplayName") %>'></asp:Label>
<asp:DynamicFilterControl ID="DynamicFilter" runat="server"> </asp:DynamicFilterControl>
</div>
</ItemTemplate>
<FooterTemplate>
<div>
<asp:Button ID="SearchButton" runat="server" CommandName="Search" Text="Search"></asp:Button>
<asp:Button ID="ClearButton" runat="server" CommandName="Clear" Text="Clear"></asp:Button>
<asp:Button ID="BrowseButton" CommandName="Browse" runat="server" Text="Browse"></asp:Button>
</div>
</FooterTemplate>
</asp:DynamicFilterRepeater>