How to implement such a function: the state of the property needs to change depending on the state of the task

if “false” => -

if “true” => -

--- 
task: false 
---
- [ ] task 


--- 
task: true
---
- [ x ] task

I mixed up the investigation. It should be the other way around.

if - => “false”

if - => “true”

You can achieve this with Meta Bind plugin:

---
task: false
---

`INPUT[toggle:task]` task

The only downside is that it’s a toggle and it looks visually different than a checkbox.

1 Like

You might find this useful, but there is an option to make checkboxes through

INPUT[multiSelect(option(Task1),option(Task2)):MyTasks]

1 Like