An error occurs when I publish a table with split rows

Post here questions and problems related to editing and publishing DITA content.
tracy
Posts: 1
Joined: Wed Nov 30, 2022 11:05 am

An error occurs when I publish a table with split rows

Post by tracy »

I create a table with split rows and set the rowheader to firstcol. An error occurs that the split body rows are displayed in the style of header (as shown in the figure below), when I publish doc to PDF/HTML5/Webhelp. Instead, the output is ok when the row is not split.
error.png
error.png (135.52 KiB) Viewed 336 times
julien_lacour
Posts: 481
Joined: Wed Oct 16, 2019 3:47 pm

Re: An error occurs when I publish a table with split rows

Post by julien_lacour »

Hello,

Could you indicate which version of Oxygen you are currently using?
Also if you can provide the sample you are using to obtain this output, it will help us analyzing the problem and fixing it.

I tried with the following sample and the outputs look fine to me:

Code: Select all

<table frame="all" rowsep="1" colsep="1" id="table_dpq_kjy_svb" rowheader="firstcol">
    <tgroup cols="2">
        <colspec colname="c1" colnum="1" colwidth="1*"/>
        <colspec colname="c2" colnum="2" colwidth="1*"/>
        <thead>
            <row>
                <entry/>
                <entry>Header</entry>
            </row>
        </thead>
        <tbody>
            <row>
                <entry morerows="2">Merged</entry>
                <entry>Cell</entry>
            </row>
            <row>
                <entry>Cell</entry>
            </row>
            <row>
                <entry>Cell</entry>
            </row>
        </tbody>
    </tgroup>
</table>
Regards,
Julien
Post Reply