Our flexible Kanban board for managing tasks with drag drop


Post by plus »

In my project where I'm using taskboard, if I add tbar in config my project crash without any message.
Chrome doesn't load my project and even I can't open chrome DevTools window

this is my simple configuration

const taskBoardConfig = {
      // Append its element to the page
      appendTo : "taskBoardContainer",
      // Define some columns
      columns : [
        'Creata',
        'In corso',
        'Sviluppo terminato',
        'Rilasciata',
        'Test in corso',
        'Errori rilevati in test',
        'OK in ambiente test',
        'Collaudo in corso',
        'Errori rilevati in collaudo',
        'OK'
      ],

  // Link the columns to a field on the tasks
  columnField : 'status',


  // Match tasks to swimlanes using the prio field
  swimlaneField : 'prio',

  swimlanes : [
    'Alta',
    'Media',
    'Bassa'
  ],
        
  tbar : [
    '->',
    // Field for filtering columns
    { type : 'columnfilterfield' },
    // Button for picking which columns to show
    { type : 'columnpickerbutton' }
  ],

What could be the problem?


Post by plus »

if I add tbar by code in this way

      this.myTaskBoard.tbar = [{ type : 'columnfilterfield' },
                                // Button for picking which columns to show
                                { type : 'columnpickerbutton' }
                              ];

works fine

This can be a workaround but why I can't configure tbar in config?


Post by alex.l »

How to reproduce that? I tried with our examples and it worked fine. Do you see that problem in our examples?

All the best,
Alex


Post Reply