Lokomotom
Lokomotom
This is for Handsontable 5.0.0 let cp_row, cp_column, cp_row2, cp_data, cp_validate; function cp_handler(e) { var evtobj = window.event? event : e if (evtobj.keyCode == 67 && evtobj.ctrlKey){ cp_data = new...
Check my solution in issue I posted here, it might be related.
SOLVED! Here is new solution. ChosenEditor.prototype.createElements = function () { this.$body = $(document.body); this.TEXTAREA = document.createElement('textarea'); let select = document.createElement('select'); this.TEXTAREA.appendChild(select); //this.TEXTAREA.setAttribute('type', 'text'); this.$textarea = $(this.TEXTAREA.children[0]); Handsontable.dom.addClass(this.TEXTAREA.children[0], 'handsontableInput'); this.textareaStyle =...