select-task
Description
Fires when selecting a task
Usage
"select-task": ({
id: string | number,
join?: boolean
}) => void;
Parameters
The callback of the select-task event can take an object with the following parameters:
id
- (required) the id of a taskjoin
- (optional) defines the mode in which the task has been selected:- true - multi-selection mode
- false - single selection mode
info
To handle the inner events, you can use the Event Bus methods
Example
const { ToDo, Toolbar } = todo;
const {tasks, projects, users} = getData();
const list = new ToDo("#root", {
tasks,
projects,
users
});
const toolbar = new Toolbar("#toolbar", {
api: list.api,
});
// subscribe to the "select-task" event
list.api.on("select-task", ({id, join}) => {
console.log("The", id, "task is selected");
console.log(join);
});
Change log: The join
parameter was added in v1.1
Related articles: