How to Set Title Name on the Entry Layout

This article will guide you on how to update the entry record title name.

  1. Go to the Manage Records page of an entry that you want to update.
  1. Click on the Entry Layouts tab, then select the entry layout that you want to change.
  1. Click on the header fields, then click Open Editor.
  1. You'll see a configuration that roughly follows this structure. We'll change the title.elements property value.
{
    "type": "header",
    "title": {
        "elements": [
            "{{singular record.name}}",
            "{{{entry.autoId}}}",
            "{{{entry.name}}}"
        ],
        "joinWith": " - ",
        "icon": true
    },
    "buttonsLeft": [
        ...
    ],
    "buttonsMenu": [
       ...
    ],
    "sameLine": 600,
    "content": [...]
}
  1. To know which fields you can use for the title, go to any record entry page. Click on the Three Dots button, then click Info.
  1. Check on the Show Field Information.
  1. You'll see an additional field appear on each entry. We'll use the value that appears on theinternal-id section.
  1. For example, we replace the autoId in the title with status. The new configuration becomes like this. See that we still keep the entry. prefix.
{
    "type": "header",
    "title": {
        "elements": [
            "{{singular record.name}}",
            "{{{entry.status}}}",
            "{{{entry.name}}}"
        ],
        "joinWith": " - ",
        "icon": true
    },
    "buttonsLeft": [
        ...
    ],
    "buttonsMenu": [
        ...
    ],
    "sameLine": 600,
    "content": [...]
}
  1. Click Save Changes. If you go to the entry record page, you'll see that the title format has been changed.

📌 Need Help?

If you require assistance or encounter any issues, please don't hesitate to contact us for further support.