I have a senario similar to this:
class
CarManufacture
{
String Name { get; set; }
String Description { get; set; }
List<Model> CarModels {
get
;
set
; }
List<Model> TruckModels {
get
;
set
; }
}
class
Model
{
string
ModelName {
get
;
set
; }
}
The list of Manufactures will be the datasource, and it won't be a fixed count. What I want to do is show the Manufactures horizontally, and below them, the lists of cars and trucks. So something like this:
Chevrolet Ford Nissan
[Description] [Discription] [Description]
Cars Malibu Mustang Altima
Impala Fusion Maxima
Camaro Versa
Trucks Colorado F150 Titan
Silverado F250
How can I accomplish this? I'm trying with a CrossTab, but can't quite figure it out. Are there any examples of something like this?