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
495
stack cell in a row
posted

Is it possible to define the following layout:

A row consists of:

Column 1: Cell A and Cell B stacked (vertically)

Column 2: Cell C (height of C = height A + height B)

Thanks.

Parents
  • 495
    Offline posted

    OK, I just figured it out:

                            <igDP:FieldLayout.Fields>
                                <igDP:Field Name="A" Column="0" RowSpan="2" />
                                <igDP:Field Name="B" Column="1" />
                                <igDP:Field Name="C" Row="1" Column="1" />
                                <igDP:Field Name="D" Column="2" />
                                <igDP:Field Name="E" Row="1" Column="2" />
                            </igDP:FieldLayout.Fields>

    B, C and D,E are stacked now. Instead of having a label for B and C itself, I would rather like to have a label for B, C together... Can I do that? Even better, I would like an additional label like a header of a header --> "Column A" "A", "Column B" "B "C", ...

     

Reply Children
No Data