Our flexible Kanban board for managing tasks with drag drop


Post by bprescott_msd »

I would like to be able to set up my task board so that the column header text value is based on the data of the tasks below (not just the count of tasks), and I have not found a good way to do this yet.

Can you point me toward an example that illustrates this?

Thanks.

Brian Prescott


Post by mats »

You could implement this easily, example:

let i = 0; 
taskboard.project.taskStore.on('change', () => taskboard.columns.first.text = i++)

Post Reply