Create Header with spreadsheet

Confluence User - 12 Jun, 2025

Would like to ask how to add design row/column as per attached below using spreadsheet?
or any other method to create it? 

spread

2


12 Jun, 2025
confluenceUser
confluenceUser

Hello Christopher, you can utilise the Custom Settings (JSON) Configuration field. Try using the code below to generate your header.


{
  "nestedHeaders": [
    [
      { "label": "TEST", "colspan": 3 },
      { "label": "Example", "colspan": 3 }
    ],
        ["A", "B", "C", "E", "F", "G"]
    ],
  "colHeaders": false
}


You can refer to Spreadsheet - Knowledge Base for DX 8 - Joget | COMMUNITY for more information on plugin configurations. Happy coding!

20 Jun, 2025
confluenceUser
confluenceUser

Hi Christoper,

You can use a Custom HTML element in the form. Insert an HTML table with merged headers using the code below. Simply drag a "Custom HTML" field into your form in the Form Builder, and paste this code inside:

<table border="1" style="border-collapse: collapse;">
  <tr>
    <th colspan="3">TEST</th>
    <th colspan="3">Example</th>
  </tr>
  <tr>
    <td>A</td><td>B</td><td>C</td><td>E</td><td>F</td><td>G</td>
  </tr>
</table>

RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print