Hi!
I want to swap a RadGridView with a RadListView Control.
One issue I have at them moment is applying a filter to the RadListView.
Before (with RadGrid) I used:
Dim filterExpression As String
filterExpression = "(ProductID = " & drp_Products.SelectedValue.ToString & ")"
RadGrid_Search.MasterTableView.FilterExpression = filterExpression
RadGrid_Search.MasterTableView.Rebind()
How can I do the same thing with RadListVIew?
Thanks, Tom