Documentation

focus

sets focus to the control

void focus();

See also

Example

webix.ui({
    view:"button", 
    id:"b1", 
    value:"Save"
});
 
$$('b1').focus();

Back to top