Announcement

Collapse
No announcement yet.

in side panel

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

  • in side panel

    Hi,

    What you have to do to display your own modules in the SidePanel ?
    peter

  • #2
    hello

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

    Comment


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


      • #4
        Hi,

        use "__APPEND__" keyword before your panelin your custom clientDefs

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

        Comment

        Working...
        X