Remove associated users (design)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gundogduyakici
    Senior Member
    • Mar 2018
    • 165

    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?
  • tanya
    Senior Member
    • Jun 2014
    • 4308

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

    Comment

    • gundogduyakici
      Senior Member
      • Mar 2018
      • 165

      #3
      Yes, just from layout

      Comment

      • tanya
        Senior Member
        • Jun 2014
        • 4308

        #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

        • gundogduyakici
          Senior Member
          • Mar 2018
          • 165

          #5
          Okay tanya very big thanx

          Comment

          Working...