ui of ui.spreadsheet, Methods Webix Docs

StartAPI Referenceui.spreadsheetMethods

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

object ui(object view);

view

objectconfig 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

Join Our Forum

We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.

Go to Forum

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.