Closed CrackerakiUA closed 1 year ago
Can't find a way to get text from ngx-tinymce as we can do in vanile one. Is there a way to get editor? In component there is no such thing as activeEditor or getContent
activeEditor
getContent
const myText = tinyMCE.activeEditor.selection.getContent({ format: 'text' });
You can get the current instance via @ViewChild , then you can access the tinymce instance property.
@ViewChild
instance
Can't find a way to get text from ngx-tinymce as we can do in vanile one. Is there a way to get editor? In component there is no such thing as
activeEditor
orgetContent