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

some.ui({ view:"popup", id:"myid" });
...
//will NOT locate view
var view = $$("myid"); //null
//will locate view
var view = some.$$("myid"); //popup

Details

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

Back to top