Announcement

Collapse
No announcement yet.

Remove associated users (design)

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

  • Remove associated users (design)

    Hi everyone,
    In some modules I just want to see the team. How to remove associated users Would you describe the file path?

  • #2
    Hello,
    do you want to remove it from the layouts only or at all?
    and for what entity?

    Comment


    • #3
      Yes, just from layout

      Comment


      • #4
        Example application/Espo/Modules/Crm/Resources/metadata/clientDefs/Contact.json

        define in your clientDefs (custom/Espo/Custom/Resources/metadata/clientDefs/{YourEntity}.json) defaultSidePanelFieldLists and set needed fields and clear the cache in Administartion

        Code:
        {
           "defaultSidePanelFieldLists": {
              "detail": [
                 {
                    "name": "teams"
                 }
              ],
              "detailSmall": [
                 {
                    "name": "teams"
                 }
              ]
           }
        }

        Comment


        • #5
          Okay tanya very big thanx

          Comment

          Working...
          X