Grouping data in Silverlight DataGrid
Posted by: Method ~ of ~ failed,
on 09 Apr 2009 |
View original | Bookmarked: 0 time(s)
I got this question on how do you add grouping to the DataGrid in Silverlight without using the RIA Services ObjectDataSource. Frankly I didnt know off the top of my head either and Ive since learned it isnt obvious. Allow me to explain the steps. In my simple app I have a static class that supplies some hard-coded data: 1: public List<Person> GetPeople()
2: {
3: List<Person> peeps = new List<Person>();
4: peeps.Add(new Person() {...