Object Table Header Column

Is there a way to have a Header encompass two columns in an Object Table?

Like so:
/////////////////////////////////////
/           TITLE              /
/////////////////////////////////////
/                /                  /
/                /                  /
/                /                  /
/                /                  /
/                /                  /
/                /                  /
/////////////////////////////////////

Hi, Alex!

Yup, this is possible with column groups. Try this:

        <column-group collapsed="false" heading="Visible group 1">
            <column heading="Column 1">Column 1</column>
            <column heading="Column 2">Column 2</column>
        </column-group>

Let me know if that works

Hey @kobie ! That worked, but not exactly how I was hoping. See the screenshot

Ideally, I would like all headers to be in the same row. Is that possible? Thanks!

Referring to the screenshot, do you mean that you want one row with the “Test” in it as a header, and then no second header row? So with content in the columns directly beneath the multiple-column-spanning header row?

Correct.

Essentially I want one row of headers (all different headings, test was just for example), but for two of the columns to have a spanning header over two rows.

|||||||||||||||||||||||||||||||||||||||||||
| Test | Test |       Test      |
||||||||||||||||||||||||||||||||||||||||||||
|         |        |          |         |
|         |        |          |         |
|         |        |          |         |
||||||||||||||||||||||||||||||||||||||||||||

Give this a try? (leave the column headings blank)

    <column-group collapsed="false" heading="Visible group 1">
        <column heading="">Column 1</column>
        <column heading="">Column 2</column>
    </column-group>