Add new action in relationship

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • item
    Active Community Member
    • Mar 2017
    • 1557

    #1

    Add new action in relationship

    Hello,
    where I can begin to add a new action in relationship panel ? I need to view another entity detail

    Regards
    If you could give the project a star on GitHub. EspoCrm believe our work truly deserves more recognition. Thanks.​
  • yuri
    EspoCRM product developer
    • Mar 2014
    • 9667

    #2
    Hi,

    In clientDefs in relationshipPanels section you can define

    Code:
    "actionList": [
        {
             "action": "test",
             "label": "Test"
        }
    ]
    Then you will need to define method actionTest in the panel view or in parent detail view.

    Comment

    Working...