instructure-react / react-tinymce

React TinyMCE component
181 stars 115 forks source link

If I change the value of the TinyMCE tag,the content has no change. #57

Open mfdefs opened 7 years ago

mfdefs commented 7 years ago

Because in TinyMCE.js the render method use defaultValue for the content. So my solution is add this function to the TinyMCE class:

componentDidUpdate: function componentDidUpdate(prevProps, prevState) {
    if(prevProps.content!==this.props.content){
        tinymce.EditorManager.get(this.id).setContent(this.props.content);
    }
  }
ghost commented 6 years ago

yes please!