close-menu
Description
Fires when closing the menu
Usage
"close-menu": ({
id: string | number;
type: "task" | "user" | "toolbar";
});
Parameters
The callback of the close-menu event can take an object with the following parameters:
id
- (required) the ID of an item for which menu is closedtype
- (required) the type of a menu
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 "close-menu" event
list.api.on("close-menu", ({id, type}) => {
console.log("The menu is closed", id, type);
});
Change log: Added in v1.1