I created a report and set up the objectdatasource as a "common type" that we use. The "common type" has a structure of:
Class OrderSession
Property Name As String
Property ID As Integer
Property Orders As OrderList
End Class
The OrderList class contains a list of orders, with each order containing a list of OrderItems. When I set the datasource as an order session..the only properties I can get to print in the details section are ID and Name. Everything else causes a red box to display saying something about not having access to the field. How would I go about printing properties from the Order and OrderItem in the details section?
I am new to Telerik Reporting but have used Crystal for a long time. Any help on how to do this would be appreciated.
Class OrderSession
Property Name As String
Property ID As Integer
Property Orders As OrderList
End Class
The OrderList class contains a list of orders, with each order containing a list of OrderItems. When I set the datasource as an order session..the only properties I can get to print in the details section are ID and Name. Everything else causes a red box to display saying something about not having access to the field. How would I go about printing properties from the Order and OrderItem in the details section?
I am new to Telerik Reporting but have used Crystal for a long time. Any help on how to do this would be appreciated.