Hi,
I have a grid and for some of the columns i have used custom filter templates.
When i worked on this grid, I ended up writing custom filter logic and i used the following code
If e.CommandName = radGrid.FilterCommandName Then
e.Canceled = True
Filter()
End If
In the Filter () function i build a filter expression and assign it to the grid.
What i want to know is , do i have to have use custom filter logic if i use custom filter templates?
PS
I have a grid and for some of the columns i have used custom filter templates.
When i worked on this grid, I ended up writing custom filter logic and i used the following code
If e.CommandName = radGrid.FilterCommandName Then
e.Canceled = True
Filter()
End If
In the Filter () function i build a filter expression and assign it to the grid.
What i want to know is , do i have to have use custom filter logic if i use custom filter templates?
PS