I put a collection on the form and bind to grid. I set the grid to sort and set SupportsSorting = true. At runtime I can click on the header and it posts back, but the records don't sort.
Here's my Page_Load:
if (!IsPostBack)
{
regionsCollection1.GetMulti(null);
RegionList.DataBind();
}
At first I didn't wrap this in the check for postback, then I put that in there, but it didn't help (but my data still shows, so I guess I should be doing it anyway).
What is SortClauses for? Should I be setting that to something?
Jim