How can i get the value of the standard texteditor while typing?
I tried:
this.editval = this.hot.getCellEditor(this.editcell.row, this.editcell.col).getValue();
but getValue() is not implemented?
How can i get the value of the standard texteditor while typing?
I tried:
this.editval = this.hot.getCellEditor(this.editcell.row, this.editcell.col).getValue();
but getValue() is not implemented?
Hi @daniel.z
Can you tell me what framework are you using? I think there might be a problem with reference to the Handsontable instance, but I need more information. Also, code demo would be helpful.
I use angular. this.hot
is defined and getCellEditor
too. But not getValue()
Hi @daniel.z
Maybe that solution will work for you: https://jsfiddle.net/5dc6o9n0/5/ It prints the value of the cellEditor while you type.