removes the hot key handler
key | string | string with the key name |
handler | function | the hot key handler |
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 |
//removes ALL
webix.UIManager.removeHotKey("up");
//removes One
webix.UIManager.removeHotKey("up", my_function);
//removes One for specific view
webix.UIManager.removeHotKey("up", null, $$("button"));