Announcement

Collapse
No announcement yet.

Missing Field in Lead Layout Manager

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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

  • #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


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

      Comment

      Working...
      X