I have enabled filtering in my RadGrid
as follows
<telerik:RadGrid ID="gvSample" AllowMultiRowSelection="True" runat="server"
GridLines="None" CellSpacing="1" Skin="WebBlue" AllowPaging="false" PageSize="50"
AllowFilteringByColumn="true">
In the Item command I need to get the value entered in the filter textbox in the second column. How can I get it? I had tried the following but it wont gives the actual output?
Private Sub gvSample_ItemCommand(ByVal sender As Object, ByVal e As elerik.Web.UI.GridCommandEventArgs) Handles gvSample.ItemCommand
lblMsg_.Text=gvSample.FilterMenu.Items(1).Text
End Sub