Hi,
in your doc’s page : https://www.htmlelements.com/docs/editor-methods/
there’s a mistake in executeCommand/InsertTxt example :
editor.executeCommand('insertText', false, 'Plain Text inserted');
the ",false," should not exist. The correct examnple is :
editor.executeCommand('insertText', 'Plain Text inserted');
fabriceb
-
This topic was modified 2 years, 1 month ago by fabriceb.
-
This topic was modified 2 years, 1 month ago by fabriceb.
-
This topic was modified 2 years, 1 month ago by fabriceb.