Documentation

id

the component ID

id id;

Example

webix.ui({
    view:"window",
    id:"win3",
    ...
});
 
$$('win3').close();

See also

Details

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