Hi,
I'm trying to set a default sort on a telerik gridview (Q2 2007)
The sort appears to work, however, the arrow to indicate sorting is does not show. Is there something that I can do to add this, or is the functionality non-existent?
Thanks,
David
I'm trying to set a default sort on a telerik gridview (Q2 2007)
| BindingList<Temp> tempList = new BindingList<Temp>(); |
| int j = 0; |
| for (int i = 1000; i > 0; i--) |
| { |
| Temp temp = new Temp(); |
| temp.Temp1 = i + " descending"; |
| temp.Temp2 = j + " ascending"; |
| tempList.Add(temp); |
| j ++; |
| } |
| radGridView1.MasterGridViewTemplate |
| .SortExpressions.Add("Temp1", RadSortOrder.Ascending); |
| bindingSource1.DataSource = tempList; |
The sort appears to work, however, the arrow to indicate sorting is does not show. Is there something that I can do to add this, or is the functionality non-existent?
Thanks,
David