up vote 3 down vote favorite
4
share [g+] share [fb]

I am attemping to have my gridview be:

  • bound by a List in code-behind. I am using my own custom BOL.
  • no datasource object on the html page
  • sortable on each column that I choose. The SortExpressions are all set correctly.

The resulting error message:

The GridView 'myGridView' fired event Sorting which wasn't handled.

How can I have my List sorted?

I am suspecting that it will have to do with specifying a function for the OnSorting attribute.

 OnSorting="MySortingMethod"
link|improve this question

feedback

protected by Community May 25 '11 at 21:55

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

5 Answers

up vote 6 down vote accepted

Thank you for your answers on the sorting. I turned to LINQ to help sort dynamically. Since the grid knows whether to sort ASC or DESC, and which field, I used a LINQ Expression. The Expression performed the sorting, and then I simply bound those results to my gridview.

I suspect the jQuery method would be faster, and wouldn't require a full postback.

using System.Linq.Expressions;

public SortDirection GridViewSortDirection
{
    get
    {
        if (ViewState["sortDirection"] == null)
            ViewState["sortDirection"] = SortDirection.Ascending;

        return (SortDirection)ViewState["sortDirection"];
    }
    set { ViewState["sortDirection"] = value; }
}

protected void gridView_Sorting(object sender, GridViewSortEventArgs e)
{
    //re-run the query, use linq to sort the objects based on the arg.
    //perform a search using the constraints given 
    //you could have this saved in Session, rather than requerying your datastore
    List<T> myGridResults = PerfomSearch();


    if (myGridResults != null)
    {
        var param = Expression.Parameter(typeof(T), e.SortExpression);
        var sortExpression = Expression.Lambda<Func<T, object>>(Expression.Convert(Expression.Property(param, e.SortExpression), typeof(object)), param);


        if (GridViewSortDirection == SortDirection.Ascending)
        {
            myGridView.DataSource = myGridResults.AsQueryable<T>().OrderBy(sortExpression);
            GridViewSortDirection = SortDirection.Descending;
        }
        else
        {
            myGridView.DataSource = myGridResults.AsQueryable<T>().OrderByDescending(sortExpression);
            GridViewSortDirection = SortDirection.Ascending;
        };


        myGridView.DataBind();
    }
}
link|improve this answer
Usefull, thanks.. Curious to see how work the method with Jquery! Merci beaucoup.. – bAN Dec 8 '10 at 9:36
@p.campell: slightly modified the method as GridView e.SortDirection always returns SortDirection.Ascending. hope you don't mind – naveen Jun 11 '11 at 12:42
feedback

Correct - you will need to handle the onsorting, sort your list and re-bind.

Alternatively you could look at handling the sorting client side using a javascript framework like jQuery.

link|improve this answer
feedback

You could write a Compare for your objects:

private int CompareObject(YourObject object1, YourObject object2)
{
    int iReturnValue = 0;
    if ((object1 != null) && (object2 != null) &&
        (object1.SomeField != object2.SomeField))
    {
        iReturnValue = (object1.SomeField > object2.SomeField) ? 1 : -1;
    }
    return iReturnValue;
}

Then when in your sorting event just pass in the Compare function into your objects sort routine (assuming you have something like List).

// Your list of data from the session or viewstate or whereever you have it stored.
lstObjects.Sort(CompareObject);

You now have a sorted list so just rebind it.

link|improve this answer
feedback

Correct, you need to handle the OnSorting event and set the AllowSorting property to true.

link|improve this answer
feedback

If you get this error:

the datasource does not support server side paging

Try adding .ToList<T>() to your query:

if (e.SortDirection == SortDirection.Ascending)
{
    GridViewTrackerLoans.DataSource = myGridResults.AsQueryable<T>().OrderBy(sortExpression).ToList<T>();
}
else
{
    GridViewTrackerLoans.DataSource = myGridResults.AsQueryable<T>().OrderByDescending(sortExpression).ToList<T>();
};
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.