attaches a context menu to a Webix component or an HTML element
target | object|HTMLElement | Webix view object or an HTML element |
webix.ui({
view: "list",
... // list config
});
webix.ui({
view: "contextmenu",
... // contextmenu config
});
$$("contextmenu1").attachTo($$("list1"));
The component and context object are initialized in different Webix constructors (as seen above). The context menu isn't shown initially and becomes visible on right mouse click with the cursor pointed over the list area.