Reputation: 4023
Has anyone managed to extend a GridView with default sorting? This seems pretty trivial to me but i can't get it done.
The idea is to add a property DefaultSortExpression
to a Server Control that inherits GridView.
this.SelectArguments.SortExpression
seems to get it's value set after i do so that doesn't work either. (Unless there's some magical event i didn't try yet).I want to be able to set the SortExpression before the GridView does it's databinding.
Upvotes: 1
Views: 1069
Reputation: 4023
protected override DataSourceSelectArguments CreateDataSourceSelectArguments()
{
DataSourceSelectArguments dsa = base.CreateDataSourceSelectArguments();
// dsa.SortExpression = "my field";
return dsa;
}
Upvotes: 1