Related List in Tab Break

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • abhilash.kumar.niit
    Member
    • Sep 2024
    • 74

    Related List in Tab Break

    Hi can i show the related lists in the tab break in espocrm? i am aware that the related lists comes in the bottom but i want to show it in the tab panels. is it possible in ESPO???
  • dreginald
    Senior Member
    • Sep 2018
    • 130

    #2
    You can try with this unofficial etension https://www.eblasoft.com.tr/espocrm-...le-inline-form

    Comment

    • yuri
      Member
      • Mar 2014
      • 8816

      #3
      Hi,

      Maybe using a Link-Multiple field will work for you.
      If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

      Comment

      • abhilash.kumar.niit
        Member
        • Sep 2024
        • 74

        #4
        Hi Yuri,

        Thanks for the solution but this is not working on case. my use case is i am creating email to case and it is working fine but when i am showing the attached emails on case detail page it is not working.
        note: it is showing in the history section but i want it to display in bottom panel. i think the email to case uses Parent column for mapping and the tab panel uses some another column am i right?

        Comment

        • yuri
          Member
          • Mar 2014
          • 8816

          #5
          There's the ability to make the Emails panel appear in the Bottom Panels layout.

          Create (or edit if already exists) custom/Espo/Custom/Resources/metadata/entityDefs/Case.json

          Code:
          {
              "links": {
                  "emails": {
                      "layoutRelationshipsDisabled": false
                  }
              }
          }
          Make sure JSON is valid.

          Then, clear cache.

          The Emails panel will be available in the Bottom Panels layout for Cases.

          But I'm not sure whether everything will work fine as there can be some small conflicts between the Emails panel and the History panel.
          If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

          Comment

          • yuri
            Member
            • Mar 2014
            • 8816

            #6
            Also worth noting that as of v9.0 it's possible to add the History and Activities panels to the bottom.
            If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

            Comment

            Working...