Our flexible Kanban board for managing tasks with drag drop


Post by kiyoshi »

I'm trying to add the progress bar percentage on the side, like the image.

progress.png
progress.png (15.2 KiB) Viewed 601 times

Here is the code:

bodyItems: {
        percentDone: {
          type: "progress",
        },
      },

Post by sergey.maltsev »

Hi!

You may check example's code here in online code editor

https://bryntum.com/products/taskboard/examples/column-drag/

    // Items added to each task body
    bodyItems : {
        // Progress bar
        progress : { type : 'progress' }
    },

It works.


Post Reply