blur of ui.button, Methods Webix Docs

StartAPI Referenceui.buttonMethods

removes the focus from the control

void blur();

Example

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

See also

  • API

  • Articles

  • Back to top