joplin / plugin-kanban

It allows notes in a notebook to be organized in a kanban board.
https://discourse.joplinapp.org/t/kanban-board-project/17469
131 stars 17 forks source link

Feature Request: Filter by to-do type note. #15

Closed thammawat-s closed 2 years ago

thammawat-s commented 2 years ago

If Kanban could filter on note type instead/addition to tag, that would be ideal. I.e. I only want "to-do" notes to be in my Kanban (workaround is I tag them with "task" and filter on that). This way I keep the Joplin todo logic and added Kanban magic.

Regards,

zhenjiaofenjie commented 2 years ago

You could try the parameter completed. For example:

columns:
    - name: Queue
      completed: false
    - name: Progressing
      completed: false
    - name: Finished
      completed: true
ameisbe commented 2 years ago

This actually works like this:

columns:
  - name: TODO
    tag: todo
  - name: Working
    tag: wip
  - name: Done
    completed: true
    tag: done
filters:
  rootNotebookPath: /
  completed: false
mablin7 commented 2 years ago

@thammawat-s let me know if the issue remains unsolved, until then I'm closing this.