allows creating a new UI, the ID of which will be locked in the parent ID space
view | object | config of view |
object | newly created view |
webix.ui({
view: "spreadsheet", id:"ss",
data: spreadsheet_data,
});
$$("ss").ui({
view:"popup", id:"win",
body:{
template:"Some content"
}
});
$$("ss").$$("win").show({ x:300, y:300 });
Arguments of the method are the same as for the webix.ui command
Back to top