Is there a way to block the processing of the Enter key in a combo with gridsuggest? Enter’s default behavior closes grid suggest.
When a barcode is scanned the reader appends Enter which causes Webix to close the Grid Suggest; which makes using a barcode reader impossible.
Attaching event handler onKeyPress fires and intercepts code 13, but the grid is already closed before hitting this code path.
‘onKeyPress’: function(code, e) {
if (code == 13)
return false;
},