Kanban view as default?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vvlada
    Junior Member
    • Jan 2017
    • 17

    Kanban view as default?

    Hi,

    Is it possible and how to make Kanban view default instead of list view?

    Vladimir
  • yuri
    Member
    • Mar 2014
    • 8440

    #2
    Hi,

    custom/Espo/Custom/Resources/clientDefs/YourEntityType.json

    Code:
    {
        "listDefaultViewMode": "kanban"
    }
    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


    • partomas
      partomas commented
      Editing a comment
      It would be nice if it would be possible to set as parameter in Administration panel.
  • yuri
    Member
    • Mar 2014
    • 8440

    #3
    You can also remove the list view with the parameter:

    Code:
    {
        "listViewModeList": ["kanban"]
    }
    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

    Working...