Our flexible Kanban board for managing tasks with drag drop


Post by tmcuong »

In TaskBoard I can set min width for column ?
Because its width is very small I need to set min width for column.

column.png
column.png (18.09 KiB) Viewed 643 times

How can I set ?
Thanks


Post by alex.l »

There is a https://bryntum.com/docs/taskboard/api/TaskBoard/model/ColumnModel#field-minWidth property for a columnModel

Quick example:

const taskBoard = new TaskBoard({
    appendTo : 'container',

columns : [
    { name: 'todo', id: 'todo', minWidth : 700 },
    'doing',
    'done'
],

All the best,
Alex


Post Reply