Missing Field in Lead Layout Manager

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Christian Lietzke
    Junior Member
    • Jul 2021
    • 14

    Missing Field in Lead Layout Manager

    Hi,

    I have a small problem with the Layout Manager.

    I want to add the field "createdAccount" to the details layout in leads.
    When I check the entity manager, I can see the field, but it doesn't show up in Layout Manager under available fields.

    Am I just stupid or is there a reason that the field isn't available?

    Kind regards,
    Chris
  • dimyy
    Active Community Member
    • Jun 2018
    • 569

    #2
    createdAccount defined as

    Code:
    "createdAccount": {
      "type": "link",
      "layoutDetailDisabled": true,
      "layoutMassUpdateDisabled": true
    },
    You can add to Espo/Custom/Resources/metadata/entityDefs/Lead.json

    Code:
    "createdAccount": {
      "layoutDetailDisabled": false
    },
    This is not solve read only problem and other but you can place createdAccount to deatil view.

    Comment

    • Christian Lietzke
      Junior Member
      • Jul 2021
      • 14

      #3
      Works fine for now. Thanks for your fast help.

      Comment

      Working...