in side panel

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • peterberlin
    Active Community Member
    • Mar 2015
    • 1004

    in side panel

    Hi,

    What you have to do to display your own modules in the SidePanel ?
    peter
  • tanya
    Senior Member
    • Jun 2014
    • 4308

    #2
    hello

    application/Espo/Modules/Crm/Resources/metadata/clientDefs/Contact.json
    use it as example.
    sidePanels section
    look at tasks

    Comment

    • devscrew
      Junior Member
      • Mar 2018
      • 16

      #3
      Hi tanya ,
      Can you please let me how can I extends side panel? I mean I want to do it in upgrade safe manner, what I have to do is copy all previously available sidepanels and add new which I want to add in custom\Espo\Custom\Resources\metadata\clientDefs\L ead.json.
      it will be upgrade safe but the problem is, why do I have to copy previous one, is there a way that I can add only new panel in custom way?
      Thanks

      Comment

      • tanya
        Senior Member
        • Jun 2014
        • 4308

        #4
        Hi,

        use "__APPEND__" keyword before your panelin your custom clientDefs

        Code:
        "sidePanels": {
                "detail": [
                    "__APPEND__",
                    { your panel}
        ]
        }

        Comment

        Working...