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 |
some.ui({ view:"popup", id:"myid" });
...
//will NOT locate view
var view = $$("myid"); //null
//will locate view
var view = some.$$("myid"); //popup
Arguments of the method are the same as for the webix.ui command
Back to top