ui

allows creating a new UI, the ID of which will be locked in the parent ID space

object ui(object view);
viewobjectconfig of view
objectnewly created view

Example

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 });

Details

Arguments of the method are the same as for the webix.ui command

Back to top
If you have not checked yet, be sure to visit site of our main product Webix ui widget library and page of spreadsheet javascript library product.