addHotKey

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

void addHotKey(string key,function handler, [object|string view] );
keystringназвание клавиши или сочетание клавиш
handlerfunctionобработчик
viewobject|stringoptional: providing a view reference will add the handler to that view specifically; if set as a string, the hotkey will be added to all the relevant view instances (the string must be a valid view name)

Example

//глобальный обработчик
webix.UIManager.addHotKey("up", my_function);
 
//обработчик для компонента myview
webix.UIManager.addHotKey("ctrl-up", my_function, myview);

See also
Наверх