Announcement

Collapse
No announcement yet.

Kanban list order

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

  • 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

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

    Comment


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