Page 1 of 1

An error occurs when I publish a table with split rows

Posted: Wed Nov 30, 2022 3:27 pm
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

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

Posted: Mon Dec 05, 2022 1:49 pm
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