3 Answers, 1 is accepted
0
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
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.
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
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
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.