Announcement

Collapse
No announcement yet.

Changing Panels

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

  • Changing Panels

    Hi,

    Where would I go to modify Kanban panels for my custom entity? I want to have a certain background color for a panel depending on the stage.
    So far I have my idea down: Add a class that changes the background color in the css file depending on the stage

    However, I do not know which file to place the code in, any ideas?

  • #2
    More specifically, where do I place my custom kanban-item view?

    My view path:

    Code:
    Espo.define('custom:views/record/kanban-item', 'view', function (Dep) {
    
        return Dep.extend({
    
            template: 'record/kanban-item',
    and my clientDefs

    Code:
        "recordViews":{
        "kanban-item": "custom:views/record/kanban-item"

    Comment

    Working...
    X