Good Day/Evening,
I've been struggling these past 2 days to get the Heirarchy grid working with my object, this is what my object looks like
Now when I call my WCF Service it returns a List(Of Person) which I bind to my RadGrid only show the Firstname,Surname and Age. I would like to get the Vehicles to show in a child grid. Is this possible?
Thank you!
I've been struggling these past 2 days to get the Heirarchy grid working with my object, this is what my object looks like
Public
Class
Person
Public
Property
Firstname as
String
Public
Property
Surname as
String
Public
Property
Age as
Integer
Public
Property
Vehicles as List(Of Vehicle)
End
Class
Public
Class
Vehicle
Public
Property
Make as
String
Public
Property
Model as
String
Public
Property
Color as
String
End
Class
Now when I call my WCF Service it returns a List(Of Person) which I bind to my RadGrid only show the Firstname,Surname and Age. I would like to get the Vehicles to show in a child grid. Is this possible?
Thank you!