hello,
I want to bind my custom datasource with OOTB webpart like list view webpart (might be different but with same look and feel, and all capabilities like fiiltering, sorting, paging, grouping if posstible)
by datasource is in form of Generic.List<Person> collection, where Person is simple class like
class Person{
public String Name {get;set;}
public String SecondName {get;set;}
public int Age {get;set;}
public int UniqueId {get;set;}
}
I would be appreciate if someone tell me how to achieve this (or what i should search in google to find out )
Thank You in advance
Adam