I have a DataTable:
And a RadListView
The desired output is this
My PO and customer will *always* be consistent across a range of orders.
I want the common PO and customer to behave like 'rows' in the listview, while the grid still shows all the data relevant to the particular PO. What's the general way to achieve this?
PO Customer Order Product QtyAlpha Apple 30456 Napkins 400Alpha Apple 30457 Pizza 200Alpha Apple 30458 Schlitz 400Beta Google 20001 Pizza 400Beta Google 20002 Schlitz 200And a RadListView
<telerik:RadListView> <ItemTemplate> <asp:Label ID="lbl_PO" /> <asp:Label ID="lbl_Customer" /> <telerik:RadGrid> <telerik:GridBoundColumn DataField="Product" /> <teleirk:GridBoundColumn DataField="Qty" /> </telerik:RadGrid> </ItemTemplate></telerik:RadListView>The desired output is this
PO: AlphaCustomer: Apple______________________| Order | Product | Qty |______________________
| 30456 | Napkins | 400 |______________________| 30457 | Pizza | 200 |______________________| 30458 | Schlitz | 400 |______________________PO: BetaCustomer: Google ______________________| Order | Product | Qty |______________________| 20001 | Pizza | 400 |______________________| 20002 | Schlitz | 200 |______________________My PO and customer will *always* be consistent across a range of orders.
I want the common PO and customer to behave like 'rows' in the listview, while the grid still shows all the data relevant to the particular PO. What's the general way to achieve this?