Hello,
I am trying to display multiple row data into a single grid row. The grid header result I want to get is something like this. (Displaying two row's data in a sinble grid row)
FirstName | LastName | Address || FirstName | LastName | Address
Is there any way to do this?
Thanks.
There is no support for this kind of functionality. You might be able to somehow hack this solution if you update your underlying DataSource to combine two rows into one, with columns like:
Key | Header.Caption
FirstName1 | FirstName
LastName1 | LastName
Address1 | Address
FirstName2 | FirstName
LastName2 | LastName
Address2 | Address
Of course, this would likely get pretty hairy to manage if you need to manage updates and the like, but it's really the only workaround I can think of.
-Matt
Hello Matt,
Thanks for your reply. I will try your solution first, and if it is too much then I might have to change how it looks like.
Thanks again for your help!!!
Megumi