the contents of the context popup window
webix.ui({
view: "context",
body: { },
... // context config
});
The body
property of a context popup menu may contain HTML code as well as Webix components.
webix.ui({
view: "context",
body: {
content: "details" // points to the ID of the div container with content
},
master: "areaA"
});
webix.ui({
view: "context",
body: {
view: "toolbar", cols: [
{ view: "button", value: "Button1", width: 100 },
{ view: "button", value: "Button2", width: 100 },
]
}
});