Kanban list order

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MATO
    Member
    • Jun 2019
    • 98

    Kanban list order

    Hi All

    Is there a way to change the list order for a specific date entity in Kanban view?

    You can change the Default Order field and Default Order (direction) within Edit Entity and this works within list view but not Kanban.

    Thoughts would be most welcome

    MATO
  • yuri
    Member
    • Mar 2014
    • 8440

    #2
    It's possible to disable custom order in metadata for a specific entity: https://github.com/espocrm/espocrm/issues/1971


    create a file

    custom/Espo/Custom/Resources/metadata/scopes/YourEntityType.json

    Code:
    {
        "kanbanOrderDisabled": true
    }
    Clear cache.
    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

    • MATO
      Member
      • Jun 2019
      • 98

      #3
      Hi Yuri

      Changing "$orderDisabled = $this->metadata->get(['scopes', $this->entityType, 'kanbanOrderDisabled']) ?? false;" to True

      in the file application/Espo/Services/Record.php#L1360 fixed our issue.

      Thank you for the help

      MATO

      Comment

      Working...