Our flexible Kanban board for managing tasks with drag drop


Post by suhas.kachare »

How can I display the number of tasks in each lane next to the lane title (e.g., "To Do (3)")?


Post by ghulam.ghous »

We do show the number of tasks in the column as well as for the swimlanes. Checkout these demos:

https://bryntum.com/products/taskboard/examples/swimlanes/
https://bryntum.com/products/taskboard/examples/basic/

Isn't it what you want?


Post by suhas.kachare »

I want the count on the right side next to the lane title, not on the left of the column header.

e.g., To Do (3) ---------- "<" "column menu (three dot)"

Is there a way I can control the position of the Count?


Post by ghulam.ghous »

Hey Suhas,

No built-in way to do that. But you can achieve with this css:

		.b-taskboard-column-header-padder {
			> * {
				display: block;
				align-items: center;
			}
		}

Post Reply