removes the hot key handler
key | string | string with the key name |
handler | function | the hot key handler |
obj | object | if provided, the handler will fire only when focus is in the target view |
//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"));