Hi All,
I have a rad grid in my page. I need to provide filter option for 4 columns. we need only "EqualTo" filter.
What i need is that, filter button should show in the header. And will clicking on the button, the options should not show. While clicking on the button, the grid should filter for "EqualTo" filter function.
The code we have wrritten given below. But its showing the filter menu. Please help.
Thanks in advance.
I have a rad grid in my page. I need to provide filter option for 4 columns. we need only "EqualTo" filter.
What i need is that, filter button should show in the header. And will clicking on the button, the options should not show. While clicking on the button, the grid should filter for "EqualTo" filter function.
The code we have wrritten given below. But its showing the filter menu. Please help.
Thanks in advance.
<telerik:GridTemplateColumn UniqueName="Column1" SortExpression="Column1"
HeaderStyle-ForeColor="#245E9E" HeaderText="Column 1" ItemStyle-Wrap="true" Resizable="true" AutoPostBackOnFilter="true" CurrentFilterFunction="EqualTo" DataField="Column1" FilterImageUrl="_layouts/Images/CoreSystem.LayoutsApp/filter.png">
<ItemTemplate>
<asp:Label ID="LblColumn1" Text='<%#Eval("Column1")%>' runat="server"></asp:Label>
</ItemTemplate>
<HeaderStyle Width="280px" />
<ItemStyle Font-Names="Arial" Font-Size="11px" Wrap="true" />
</telerik:GridTemplateColumn>