Good morning,
after binding a collection (List) of custom object to a gridview (with no problem) i am using ExportToExcelML to export that grid in excel;
it does export only object's property of a "know" type..
Example
class Car
{
public string Name ;
}
Class Customer
{
public string Name;
public Car Car{get;protected set;}
}
binding radgridview with a List<Customer> and exporting to excel will export just "Name" property and not "Car" , when in the gridview is shown correctly.
is there any interface i need to implement in my classes?
Thanks
Nino
after binding a collection (List) of custom object to a gridview (with no problem) i am using ExportToExcelML to export that grid in excel;
it does export only object's property of a "know" type..
Example
class Car
{
public string Name ;
}
Class Customer
{
public string Name;
public Car Car{get;protected set;}
}
binding radgridview with a List<Customer> and exporting to excel will export just "Name" property and not "Car" , when in the gridview is shown correctly.
is there any interface i need to implement in my classes?
Thanks
Nino