This is a migrated thread and some comments may be shown as answers.

Rad Grid, filter text disappears after filering

3 Answers 134 Views
Grid
This is a migrated thread and some comments may be shown as answers.
V
Top achievements
Rank 1
V asked on 28 Jan 2011, 08:10 AM
Hi,
 Rad Grid, filter text disappears after filering. I am using google like filtering.


Regards

3 Answers, 1 is accepted

Sort by
0
Pavlina
Telerik team
answered on 01 Feb 2011, 04:49 PM
Hi,

You should override the SetCurrentFilterValueToControl(TableCell cell) method to set the dropdown list SelectedValue. Please review the MyCustomFilteringColumnCS.cs page in this online example:
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridandcombo/defaultcs.aspx?product=grid

Regards,
Pavlina
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
V
Top achievements
Rank 1
answered on 04 Feb 2011, 10:59 AM
Hi,
   I am using the custom filtering class in vb.net and the override function i am using is given below, but still filtering text diappears.

Protected Overrides Sub SetCurrentFilterValueToControl(ByVal cell As TableCell)
            MyBase.SetCurrentFilterValueToControl(cell)
            Dim combo As RadComboBox = DirectCast(cell.Controls(0), RadComboBox)
            If (Me.CurrentFilterValue <> String.Empty) Then
                combo.Text = Me.CurrentFilterValue
            End If
End Sub

Thanks.
0
Pavlina
Telerik team
answered on 04 Feb 2011, 12:20 PM
Hi,

Please refer to the help article below for more information about how to override the SetCurrentFilterValueToControl method to set the SelectedValue of the drop-down list:
http://www.telerik.com/help/aspnet-ajax/grdfilteringwithdropdownlist.html

All the best,
Pavlina
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Grid
Asked by
V
Top achievements
Rank 1
Answers by
Pavlina
Telerik team
V
Top achievements
Rank 1
Share this question
or