instructure-react / react-tinymce

React TinyMCE component
181 stars 115 forks source link

Clear TinyMCE content #89

Closed vlysytsia closed 6 years ago

vlysytsia commented 6 years ago

I have TinyMCE component inside my own component <TinyMCE content={this.state.text} config={config} onChange={handleChange} />;

and update my component state on handleChange function and after submit form clear test value

this.setState({
  text: ''
}) 

But TinyMCE how previous result. Is it possible clear TinyMCE content?

@brentburg

vlysytsia commented 6 years ago

tinymce.activeEditor.setContent(''); clear TinyMCE content. Hope it help somebody)

cinder92 commented 5 years ago

@volodymyrl could you explain with code? where did i get tinymce variable?

vlysytsia commented 5 years ago

@cinder92 it's global variable - you can get it by window.tinymce or const { tinymce } = window;