Documentation

ui

allows to create new ui, which isd will be locked in parent id space

WebixView ui(object view);

Parameters

viewobjectconfig of view

Returns

WebixViewnewly 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 method are the same as for webix.ui command

Back to top