We use a template for storing meeting notes. Beginning 10 Dec. the table within our meeting notes displays the header at the bottom of the table in read mode. In edit mode, the table header appears at the top as expected.

      Probably not relevant, but looking at pages saved before 10 Dec, all tables appear as expected.

      Attaching a screenshot, the bottom section "Item, Who, Notes" is expected at the top of the table.

            [CONFCLOUD-54143] table header is appearing as a footer for some pages

            Hi everyone,

            Thank you for previously raising this bug and bringing it to our attention.

            Within our company roadmap and work capacity, we try to address or review each bug request but admit that not each one will be resolved. To continue the culture of being honest and open, we are closing this bug to focus on our upcoming roadmap for all Confluence users.

            As we continue to roll out features we do look at requests made by our users and if you feel like this bug is still impacting your team please let us know.

            Thank you again for providing valuable feedback to our team!

            Sunny Xu (Inactive) added a comment - Hi everyone, Thank you for previously raising this bug and bringing it to our attention. Within our company roadmap and work capacity, we try to address or review each bug request but admit that not each one will be resolved. To continue the culture of being honest and open, we are closing this bug to focus on our upcoming roadmap for all Confluence users. As we continue to roll out features we do look at requests made by our users and if you feel like this bug is still impacting your team please let us know. Thank you again for providing valuable feedback to our team!

            We are also having this problem. I think it may have occurred when I tried to copy rows from one table into another. I seem to remember having 2 heading rows at one point. I suspect it got corrupted there at some point.

            David Fountain added a comment - We are also having this problem. I think it may have occurred when I tried to copy rows from one table into another. I seem to remember having 2 heading rows at one point. I suspect it got corrupted there at some point.

            Kind of off topic but our HTML exports do not have a <thead> element associated with the table. Is there anyway to fix that?

            Ryan LaMay added a comment - Kind of off topic but our HTML exports do not have a <thead> element associated with the table. Is there anyway to fix that?

            This was caused by making more than one heading row (gray background). Heading row can not be made normal row, so we had to remove the second heading row, insert a new row and enter the data again.

            Thorsteinn Hallgrimsson added a comment - This was caused by making more than one heading row (gray background). Heading row can not be made normal row, so we had to remove the second heading row, insert a new row and enter the data again.

            We are also having the same problem.

            Thorsteinn Hallgrimsson added a comment - We are also having the same problem.

            Hi,
            we found the same problem today in a confluence page that had multiple correctly working tables and two tables with the problems described above (Confluence 5.6.5). I don't know how they were created (maybe copied from somewhere) or if they have always been displayed like this, but maybe the following information provides some help in finding the cause / a fix:
            The source code of a regular working table inserted via the "Insert table" button has a <thead> and a <tbody> inside the <table> element.
            The table with the header at the bottom (in edit mode it's a table with a header row and two regular rows) has:

            • <thead> (first regular row)
            • <tbody> (second regular row)
            • <thead> (header row)
            • an empty <thead>

            The code looks like this:

            <table class="confluenceTable tablesorter">
            <thead>
            <tr>
            <td class="confluenceTd" data-column="0">Text 1</td>
            <td class="confluenceTd" data-column="1">Text 2</td>
            <td class="confluenceTd" colspan="1" data-column="2"> </td>
            </tr>
            </thead>
            <tbody>
            <tr>
            <td class="confluenceTd" colspan="1">Text 3</td>
            <td class="confluenceTd" colspan="1">Text 4</td>
            <td class="confluenceTd" colspan="1"> </td>
            </tr>
            </tbody>
            <thead>
            <tr class="sortableHeader">
            <th class="confluenceTh sortableHeader">
            ...
            </th>
            <th class="confluenceTh sortableHeader">
            ...
            </th>
            <th class="confluenceTh sortableHeader" colspan="1">
            ...
            </th>
            </tr>
            </thead>
            <thead></thead>
            </table>
            

            We "solved" it by removing the tables and creating new ones.

            Regards
            Patrick Haettig

            Patrick Haettig added a comment - Hi, we found the same problem today in a confluence page that had multiple correctly working tables and two tables with the problems described above (Confluence 5.6.5). I don't know how they were created (maybe copied from somewhere) or if they have always been displayed like this, but maybe the following information provides some help in finding the cause / a fix: The source code of a regular working table inserted via the "Insert table" button has a <thead> and a <tbody> inside the <table> element. The table with the header at the bottom (in edit mode it's a table with a header row and two regular rows) has: <thead> (first regular row) <tbody> (second regular row) <thead> (header row) an empty <thead> The code looks like this: <table class= "confluenceTable tablesorter" > <thead> <tr> <td class= "confluenceTd" data-column= "0" >Text 1</td> <td class= "confluenceTd" data-column= "1" >Text 2</td> <td class= "confluenceTd" colspan= "1" data-column= "2" > </td> </tr> </thead> <tbody> <tr> <td class= "confluenceTd" colspan= "1" >Text 3</td> <td class= "confluenceTd" colspan= "1" >Text 4</td> <td class= "confluenceTd" colspan= "1" > </td> </tr> </tbody> <thead> <tr class= "sortableHeader" > <th class= "confluenceTh sortableHeader" > ... </th> <th class= "confluenceTh sortableHeader" > ... </th> <th class= "confluenceTh sortableHeader" colspan= "1" > ... </th> </tr> </thead> <thead></thead> </table> We "solved" it by removing the tables and creating new ones. Regards Patrick Haettig

            Brian Nye added a comment -

            I have also experienced the same issue. Currently using the server version of Confluence 5.6.1. It is one of several tables on the page. In edit mode, it is fine but in view mode it appears at the bottom of the table. Other tables on the page are rendering as expected.

            Brian Nye added a comment - I have also experienced the same issue. Currently using the server version of Confluence 5.6.1. It is one of several tables on the page. In edit mode, it is fine but in view mode it appears at the bottom of the table. Other tables on the page are rendering as expected.

            GillianD added a comment -

            Hi Steve,

            The issue appears to be resolved. I tried using our template with the pre-populated table, that works as expected. Then I tried creating a new page, adding a table and saving it, works as expected.

            All is now well. Thanks for your assistance!

            Best,
            Gillian Downey
            Ubiquiti Networks

            GillianD added a comment - Hi Steve, The issue appears to be resolved. I tried using our template with the pre-populated table, that works as expected. Then I tried creating a new page, adding a table and saving it, works as expected. All is now well. Thanks for your assistance! Best, Gillian Downey Ubiquiti Networks

            Hi Gillian

            Thanks for the update. Very useful. One other question, does this now happen with all tables that you create and edit or just this specific table?

            Regards
            Steve Haffenden
            Confluence Bugmaster

            Steve Haffenden (Inactive) added a comment - Hi Gillian Thanks for the update. Very useful. One other question, does this now happen with all tables that you create and edit or just this specific table? Regards Steve Haffenden Confluence Bugmaster

            GillianD added a comment -

            OnDemand

            GillianD added a comment - OnDemand

              Unassigned Unassigned
              97ce7fd45418 GillianD
              Affected customers:
              2 This affects my team
              Watchers:
              11 Start watching this issue

                Created:
                Updated:
                Resolved: