You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am attempting to create a personalized task dashboard using DataviewJS, but I am struggling to find a way to display a link that directs me to a particular task within my file. Currently, the only option I have is to link to a section or page, which is not ideal as I have a large number of nested tasks.
Although I know that the dv.taskList function can accomplish this, I am not sufficiently skilled in JavaScript to locate the exact code that accomplishes this task.
Here is an example of how it works with dv.taskList
Code
let tasks = dv.pages().file.tasks.filter(
t => t.text.includes("Task C")
)
dv.taskList(tasks)
Result:
Any assistance would be greatly appreciated. Thanks!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I am attempting to create a personalized task dashboard using DataviewJS, but I am struggling to find a way to display a link that directs me to a particular task within my file. Currently, the only option I have is to link to a section or page, which is not ideal as I have a large number of nested tasks.
Although I know that the
dv.taskList
function can accomplish this, I am not sufficiently skilled in JavaScript to locate the exact code that accomplishes this task.Here is an example of how it works with
dv.taskList
Code
Result:

Any assistance would be greatly appreciated. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions