Hi,
I want to set multiple datafields from a dataset to a single boundcolumn in my gridview, but I can't see any easy way to do this since the DataField property of the boundcolumn takes a single string that maps 1-to-1 to the relevant column in the dataset. I want to map three columns from my dataset to a single column in my DataGrid - is there any easy way I can do this, or am I going to have to get complicated?
*Please ignore the indenting - seems to be formatting issues*
I want to set multiple datafields from a dataset to a single boundcolumn in my gridview, but I can't see any easy way to do this since the DataField property of the boundcolumn takes a single string that maps 1-to-1 to the relevant column in the dataset. I want to map three columns from my dataset to a single column in my DataGrid - is there any easy way I can do this, or am I going to have to get complicated?
*Please ignore the indenting - seems to be formatting issues*
Code:
E.g. (Currently displays in datagrid like this:) Product Type Category Category Apple Fruit Fruit&Veg Fruits I want: Product Type Category Apple Fruit Fruit&Veg Fruit
Comment