I am using Telerik report in Visual studio and the structure of my datasource is as below :
<p> public class Consignment<br> {<br> public DeliveryNoteLabels Labels { get; set; }<br> public Details Ddepot { get; set; }<br> public Company Company { get; set; }<br> public Details ODepot { get; set; }<br> public Details CollectionDetails { get; set; }<br> public Details Customer { get; set; }<br> public List<Pallet> Pallets { get; set; }</p><p> }</p>
Consignment is an object bound to the report. I want to print the details of Pallets (list) to either a text box or a table in the existing report. I don't want to bind only the pallets object to the report since I need other properties of the consignment. How do I achieve this ?