Hi All,
In RadGrid,
<rad:GridTemplateColumn HeaderText="Is Critical" DataField="IsCritical" ShowFilterIcon="true">
<ItemTemplate>
<asp:Label runat="server" ID="IsCriticalLbl" Text='<%# YesNo(Eval("IsCritical"))%>'></asp:Label>
</ItemTemplate>
</rad:GridTemplateColumn>
Here, i have to filter that column by the return value of 'YesNo(Eval("IsCritical")' , which is the text field of the lable. But im unable set the datafield as 'YesNo(Eval("IsCritical")' in column property. How to set that method in datafield for filter?
In RadGrid,
<rad:GridTemplateColumn HeaderText="Is Critical" DataField="IsCritical" ShowFilterIcon="true">
<ItemTemplate>
<asp:Label runat="server" ID="IsCriticalLbl" Text='<%# YesNo(Eval("IsCritical"))%>'></asp:Label>
</ItemTemplate>
</rad:GridTemplateColumn>
Here, i have to filter that column by the return value of 'YesNo(Eval("IsCritical")' , which is the text field of the lable. But im unable set the datafield as 'YesNo(Eval("IsCritical")' in column property. How to set that method in datafield for filter?