Our flexible Kanban board for managing tasks with drag drop


Post by stophi-dev »

Is it possible to have a task on multiple swimlanes?
I have an array as swimlane field and a task can have multiple values. This means I want it to show up on multiple swimlanes simultanuously. I would need the same behavior also for column fields.

So here is a short example. I'd like to have the task "Heisenbug" on both swimlanes, but it actually appears on none of them.

const taskBoard = new TaskBoard({
    appendTo: document.body,

columnField: 'status',
columns: [
    'todo',
    'doing',
    'done'
],

swimlaneField: 'component',
swimlanes: [
    'frontend',
    'backend'
],

project: {
    tasksData: [
        {
            id: 1,
            name: 'Bug with rendering',
            status: 'doing',
            component: ['frontend']
        },
        {
            id: 2,
            name: 'Failed persists',
            status: 'doing',
            component: ['backend']
        },
        {
            id: 3,
            name: 'XSS Injection',
            status: 'done',
            component: ['frontend']
        },
        {
            id: 4,
            name: 'Heisenbug',
            status: 'todo',
            component: ['frontend', 'backend']
        }
    ]
}
});

Post by tasnim »

Hi,

This not support by Bryntum TaskBoard. I've opened feature request for it here https://github.com/bryntum/support/issues/7734.
If you need this feature urgently, you can contact our sales sales@bryntum.com for a feature sponsorship which will boost the priority of that ticket.

Best regards,
Tasnim


Post by stophi-dev »

Thanks for the quick reply.
No worries, we are just evaluating if it is the right joice to use the Bryntum Taskboard. We even have more crazy requirements than that, so there are more questions to come. :-)


Post by tasnim »

We are happy to answer your questions. Please do not hesitate to ask any questions


Post Reply