Customize the related list

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

    Customize the related list

    Hi,
    i have a related list as shown in the screenshot

    i want this TM Check Status and QA Audit status to be editable inline.

    How can i override the related list ??
    Click image for larger version

Name:	image.png
Views:	88
Size:	45.1 KB
ID:	115109
  • yuri
    Member
    • Mar 2014
    • 8667

    #2
    Hi,

    There's no inline list edit ability of of the box.

    It's possible to customize relationship panels.

    metadata > clientDefs > relationshipPanels



    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

    • dreginald
      Senior Member
      • Sep 2018
      • 112

      #3
      https://www.eblasoft.com.tr/espocrm-.../ebla-list-pro this unofficial extension will help

      Comment

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

        #4
        Hi i tried customizing this relationship panels. Unfortunately i am getting error
        Error: Could not fetch asset 'client/lib/transpiled/src/views/record/panel.js?r=1739862064'.

        can any one help??Below is my code for defining relationship


        "qualityAuditFormParameters": {
        "view": "custom:views/panels/quality-audit-form-panel-view",
        "recordListView": "custom:views/record/quality-audit-form-parameters-list",
        "rowActionsView": "custom:views/record/row-actions/quality-audit-form-parameters-row-actions",
        "label": "Quality Audit Form Parameters",
        "readOnly": false,
        "selectDisabled": false,
        "createDisabled": false,
        "viewDisabled": false,
        "unlinkDisabled": false,
        "editDisabled": false,
        "removeDisabled": false,
        "orderBy": "Id",
        "orderDirection": "asc",
        "mandatoryAttributeList": ["status"],
        "createRequiredAccess": "read",
        "selectRequiredAccess": "edit",
        "selectPrimaryFilterName": "auditParameterFilter",
        "selectBoolFilterList": ["onlyMy"],
        "filterList": ["all", "filterName"],
        "layout": "list",
        "selectMandatoryAttributeList": ["accountId", "accountName"],
        "selectOrderBy": "createdAt",
        "selectOrderDirection": "asc"
        }

        =========== quality-audit-form-panel-view.js =======

        define('custom:views/panels/quality-audit-form-panel-view', ['views/record/panel'], function (Dep) {
        return Dep.extend({
        template: 'record/panels/relationship',
        setup: function () {
        console.log('1111');
        Dep.prototype.setup.call(this);
        this.listenTo(this.collection, 'sync', this.render);
        console.log('Quality Audit Form Panel Loaded');
        }
        });
        });
        Last edited by abhilash.kumar.niit; Yesterday, 06:58 AM.

        Comment

        Working...