A customer relies heavily on pasting text from Word into the editor. Using right click to paste the text as unformatted takes a lot of extra time and it would be nice to avoid this extra step. Is it possible to make Ctrl-V paste unformatted text into the editor as default?
Regards
/Nisse Melkerud
Hi Nils,
You can can add keybindings in the HandleKeydownEvent in TableEdit.js that's located in Util\editor\javascript. To paste unformatted with CTRL+V add the following case:
case KEYCODE_V:
pasteUnformatted(this.editorID);
returnValue = false;
break;