I have a gridtemplate column in which I bind two fields from my datatable like this:
I want to apply filter to the column and siplay results using one of the fields 'Employer' .
How can I apply this filter?
<
telerik:GridTemplateColumn HeaderText="Employer/Title" UniqueName="Employer" HeaderStyle-Width="18%">
<ItemTemplate>
<b>
<%
# Eval("Employer")%></b>
<br />
<%
# Eval("JobTitle")%>
</ItemTemplate>
</telerik:GridTemplateColumn>
I want to apply filter to the column and siplay results using one of the fields 'Employer' .
How can I apply this filter?