removeHotKey

удаляет обработчик горячей клавиши

void removeHotKey(string key, [function handler,object|string view] );
keystringимя клавиши или сочетание клавиш
handlerfunctionобработчик
viewobject|stringoptional: 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

Example

// удаляет все обработчики клавиши
webix.UIManager.removeHotKey("up");
 
// удаляет один обработчик
webix.UIManager.removeHotKey("up", my_function);
 
// удаляет обработчик, заданный для компонента
webix.UIManager.removeHotKey("up", null, $$("button"));

See also
Наверх