Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
85
Databind object class
posted

Hi.. I'm trying of databind a List<> of a class A.. I have a reference to another class B in the class A.

public class Customer
{
        public String name;
        public Person _person;
}
public class Person
{
        public String LastName;
}
.....


Now, suppose I have a ultrawebGrid with two columns (Name, LastName), to the column("Name") I set basecolumnName to "name", but for the column "LastName" is there anyway, I can set the BaseColumnName to something like "Person.LastName" or "Person$LastName" ??
Thanx..