I have implemented filtering on my RadGrid via a web service method with the following signature:
My problem is I don't want to support all of the available GridSortExpressions. How do I prevent some of them from appearing in the user interface?
public
Dictionary<
string
,
object
> GetAllUsersGrid(
int
startRowIndex,
int
maximumRows, List<GridSortExpression> sortExpression, List<GridFilterExpression> filterExpression)
My problem is I don't want to support all of the available GridSortExpressions. How do I prevent some of them from appearing in the user interface?