MultiCombo backspace hotkey

Hi.
I don’t want users remove selected items in a multicombo with the backspace. How to do that ?

I have try that : webix.UIManager.removeHotKey(“backspace”), but it does not work.

Thanks

Hello,

The point is that removeHotKey will remove hotkeys which you added with the help of addHotKey

In multicombo all that things(like backspace, up and so on) are processed in a private logic through the native keydown event

How to remove this hotkey ?

As a workaround
https://snippet.webix.com/ncufs0id

Very nice. Thanks