Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
225
Repeat Columns Horizontally
posted

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.

Parents
No Data
Reply
  • 37774
    Verified Answer
    posted

    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

Children