mgmeyers / obsidian-kanban

Create markdown-backed Kanban boards in Obsidian.
https://publish.obsidian.md/kanban/
GNU General Public License v3.0
3.15k stars 180 forks source link

[Feature Request]Can Kanban be arranged in multiple rows? #193

Open zhl111 opened 3 years ago

zhl111 commented 3 years ago

image

zhl111 commented 3 years ago

image image

roaldarbol commented 3 years ago

I second this feature request; I find it useful to have a board with tasks divided by project, and then my prioritised to-do list that I can copy the tasks onto. This can of course be achieved by having 2 boards in the same view with a horizontal split, only this have to be manually toggled every time the view is required, making it unfeasible. Lastly, just a big thanks for making this amazing plug-in! I switched to Obsidian a few months ago, but then felt the need to also use Trello on the side - so I'm super excited that this plugin allows me to keep all of my workflow within Obsidian!

tlnagy commented 3 years ago

This seems related to the concept of swimlanes as brought up in #237.

alexisthual commented 2 years ago

Thank you for the great plugin! Swimlanes would be a total game-changer, I don't think I would ever need a different task managing tool if this is implemented :smile:

alexisthual commented 2 years ago

Here are some thoughts on how it could be achieved:

I see several advantages to this setting:

However, I am not sure moving a card between rows would work right away (I didn't give a close look at the dnd part). I am willing to work on this if you think this approach sounds okay @mgmeyers

g-berthiaume commented 2 years ago

+1 for swimlanes. IMO, It would greatly improve ergonomics, while not being too intrusive on the markdown schema.

mreel commented 2 years ago

IMO, It would greatly improve ergonomics, while not being too intrusive on the markdown schema.

Exactly, columns are already second level headers, so top level headers could be used for the swimlanes!

chromer030 commented 2 years ago

+1 for swimlanes. Please plan it as high priority , it can be game changer for many of us.

Thanks alot.

digitalsignalperson commented 1 year ago

Here's a css snippet to wrap cards to multiple rows.

.kanban-plugin__board > div {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
}
beelzebubbles commented 9 months ago

+1 for swimlanes.

codescv commented 9 months ago

Here's a css snippet to wrap cards to multiple rows.

.kanban-plugin__board > div {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
}

Thanks! but when I use this script the scrolling stopped working

jonasgutzke commented 7 months ago

Here's a css snippet to wrap cards to multiple rows.

.kanban-plugin__board > div {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
}

Thanks! but when I use this script the scrolling stopped working

Add overflow-y: auto; that fixed it for me.