удаляет обработчик горячей клавиши
key | string | имя клавиши или сочетание клавиш |
handler | function | обработчик |
view | object|string | optional: providing a view reference will remove the handler from it specifically; if set as a string, the hotkey will be removed from all the relevant view instances on the page |
// удаляет все обработчики клавиши
webix.UIManager.removeHotKey("up");
// удаляет один обработчик
webix.UIManager.removeHotKey("up", my_function);
// удаляет обработчик, заданный для компонента
webix.UIManager.removeHotKey("up", null, $$("button"));