I have a custom entity name "Lender" (plural: Lenders), that has Many-to-Many relationship with Opportunities and with Contacts.
I'm having trouble displaying the Relationship Panel under either Opportunity or Contact, and vice versa.
In Opportunity layout, I created a custom list named listForLender, type "smallList".
In Lender layout, i got a custom list named listForOpportunity.
In /custom/Espo/Custom/Resources/metadata/clientDefs/Opportunity.json I have the following:
However, I cannot see any of the relationship panels displayed. Could you help guide me? Much appreciated.
I'm having trouble displaying the Relationship Panel under either Opportunity or Contact, and vice versa.
In Opportunity layout, I created a custom list named listForLender, type "smallList".
In Lender layout, i got a custom list named listForOpportunity.
In /custom/Espo/Custom/Resources/metadata/clientDefs/Opportunity.json I have the following:
Code:
{ "relationshipPanels": { "referralContact": { "layout": null, "selectPrimaryFilterName": null }, "lender": { "layout": null, "selectPrimaryFilterName": null }, "accounts": { "layout": null, "selectPrimaryFilterName": null }, "lenders": { "layout": null, "selectPrimaryFilterName": null }, "cLenders": { "layout": "listForOpportunity", "selectPrimaryFilterName": null, "selectHandler": "handlers/select-related/same-account-many" } }, "additionalLayouts": { "listForLender": { "type": "listSmall", "isCustom": true } } }
However, I cannot see any of the relationship panels displayed. Could you help guide me? Much appreciated.
Comment