open-menu
Description
Fires when opening the menu
Usage
"open-menu": ({
id: string | number,
type: "task" | "user" | "toolbar",
source?: (string | number)[]
});
Parameters
The callback of the open-menu event can take an object with the following parameters:
id
- (required) the ID of an item for which menu is openedtype
- (required) the type of a menusource
- (optional) an array with ID(s) of task(s) for which operation(s) will be performed
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 "open-menu" event
list.api.on("open-menu", ({id, type, source}) => {
console.log("The menu is opened", id, type, source);
});
Change log: Added in v1.1