Replies: 1 comment
-
|
You're not doing anything wrong — search is opt-in on // Read enableSearch toggle (default: false for backward compatibility)
const enableSearchValue = this.config.get("enableSearch");
this.enableSearch = (enableSearchValue as boolean) ?? false;That's why agenda / calendar / other base views behave differently — they don't gate their search UI behind the same flag. The fix is to add views:
- type: tasknotesTaskList
name: Tasks
order:
- status
- priority
- due
# ...
options:
showScheduled: true
showDue: true
showRecurring: true
# ...other options
enableSearch: true # <-- add this lineAfter saving the file and reopening the view, the search box should appear and the in-view filter will work the same way as your agenda/calendar views. Two side notes since this came up:
Happy to file a docs PR for the missing |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Not sure if I am doing something wrong. But when I search for the task name in the task list view, it does not work. I noticed if I do it in other base views it works. Am I doing something wrong or is this an issue? Thanks

.
.


.
.
Beta Was this translation helpful? Give feedback.
All reactions