Hi,
We are running with Q2 2008 edition at present and I am experiencing a sorting issue. I am binding to a List<T> which contains a date field that I want to sort in a descending direction. The sort actually works fine and the most recent dates are at the top of the grid. My problem however is that the current row remains at the bottom of the grid e.g. on the row containing the oldest date and that results in my grid when rendered being scrolled all the way to the bottom. Does anybody have any answers? Is this something that was an issue in Q2 2008?
Regards,
Mark
radGridViewSpreadData.MasterGridViewTemplate.AutoGenerateColumns = false;
radGridViewSpreadData.MasterGridViewTemplate.SortExpressions.Clear();
radGridViewSpreadData.MasterGridViewTemplate.SortExpressions.Add(new GridSortField("Date", RadSortOrder.Descending));
radGridViewSpreadData.DataSource = this.Spread;