the component ID
webix.ui({
view:"window",
id:"win3",
...
});
$$('win3').close();
The parameter can contain any string or numeric value and doesn't have a limit on length.
It is used when referring to the component to apply and methods to it, attach events and getting to its properties.
Back to top